trunk-io: 1.3.2 -> 1.3.4

This commit is contained in:
Aaron Jheng 2024-11-23 11:30:31 +08:00
parent 9f4511da1a
commit 92222bebc3
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -6,11 +6,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "trunk-io";
version = "1.3.2";
version = "1.3.4";
src = fetchurl {
url = "https://trunk.io/releases/launcher/${finalAttrs.version}/trunk";
hash = "sha256-zrfnPWHFoFQkVtxPedKrL1Y1xLZSDX3JuF0qgo/hhnE=";
hash = "sha256-ifvdjHtjZJ7rFHlBV1e4mJA8BB5ztJt4Ao29ZOyjCHo=";
};
dontUnpack = true;
@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: {
passthru.updateScript = ./update.sh;
meta = with lib; {
meta = {
homepage = "https://trunk.io/";
description = "Developer experience toolkit used to check, test, merge, and monitor code";
license = licenses.unfree;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ aaronjheng ];
license = lib.licenses.unfree;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ aaronjheng ];
};
})