biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / trunk-io / default.nix
blob8990dc93411367e9cbce2c64321e2aea65eee830
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "trunk-io";
5   version = "1.3.1";
7   src = fetchurl {
8     url = "https://trunk.io/releases/launcher/${finalAttrs.version}/trunk";
9     hash = "sha256-kiUcc7RFPo7UWzEe2aQ2nrbI3GZ/zfxOlOdWw7YFoAs=";
10   };
12   dontUnpack = true;
13   dontConfigure = true;
14   dontBuild = true;
16   installPhase = ''
17     install -D $src $out/bin/trunk
18   '';
20   passthru.updateScript = ./update.sh;
22   meta = with lib; {
23     homepage = "https://trunk.io/";
24     description = "Developer experience toolkit used to check, test, merge, and monitor code";
25     license = licenses.unfree;
26     maintainers = with maintainers; [ aaronjheng ];
27   };