Skip to content

Commit 6dfdf67

Browse files
trunk-io: 1.3.2 -> 1.3.4 (#358302)
2 parents efd30bb + 92222be commit 6dfdf67

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
{ lib, stdenv, fetchurl }:
1+
{
2+
lib,
3+
stdenv,
4+
fetchurl,
5+
}:
26

37
stdenv.mkDerivation (finalAttrs: {
48
pname = "trunk-io";
5-
version = "1.3.2";
9+
version = "1.3.4";
610

711
src = fetchurl {
812
url = "https://trunk.io/releases/launcher/${finalAttrs.version}/trunk";
9-
hash = "sha256-zrfnPWHFoFQkVtxPedKrL1Y1xLZSDX3JuF0qgo/hhnE=";
13+
hash = "sha256-ifvdjHtjZJ7rFHlBV1e4mJA8BB5ztJt4Ao29ZOyjCHo=";
1014
};
1115

1216
dontUnpack = true;
@@ -19,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: {
1923

2024
passthru.updateScript = ./update.sh;
2125

22-
meta = with lib; {
26+
meta = {
2327
homepage = "https://trunk.io/";
2428
description = "Developer experience toolkit used to check, test, merge, and monitor code";
25-
license = licenses.unfree;
26-
platforms = platforms.linux ++ platforms.darwin;
27-
maintainers = with maintainers; [ aaronjheng ];
29+
license = lib.licenses.unfree;
30+
platforms = lib.platforms.linux ++ lib.platforms.darwin;
31+
maintainers = with lib.maintainers; [ aaronjheng ];
2832
};
2933
})

0 commit comments

Comments
 (0)