mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
29 lines
664 B
Nix
29 lines
664 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "trunk-io";
|
|
version = "1.2.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://trunk.io/releases/launcher/${version}/trunk";
|
|
hash = "sha256-i2m+6Y6gvkHYwzESJv0DkLcHkXqz+g4e43TV6u1UTj8=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -D $src $out/bin/trunk
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://trunk.io/";
|
|
description = "Developer experience toolkit used to check, test, merge, and monitor code";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ aaronjheng ];
|
|
};
|
|
}
|