trunk-io: 1.3.2 -> 1.3.4 (#358302)

This commit is contained in:
Sandro 2024-11-28 20:22:17 +01:00 committed by GitHub
commit 6dfdf6749f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,16 @@
{ lib, stdenv, fetchurl }:
{
lib,
stdenv,
fetchurl,
}:
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;
@ -19,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 ];
};
})