biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / heroku / default.nix
blobe34160ea44a9d0cb7c092c3a97174f586da131c3
1 { stdenv, lib, fetchzip, makeWrapper, nodejs, writeScript }:
3 stdenv.mkDerivation {
4   pname = "heroku";
5   version = "8.11.4";
7   src = fetchzip {
8     url = "https://cli-assets.heroku.com/versions/8.11.4/501330b/heroku-v8.11.4-501330b-linux-x64.tar.xz";
9     hash = "sha256-Q8kXXsk2VGNLv4LyUqnN3Rapozac/jgkyhSnkBOcDmo=";
10   };
12   nativeBuildInputs = [ makeWrapper ];
14   dontBuild = true;
16   installPhase = ''
17     mkdir -p $out/share/heroku $out/bin
18     cp -pr * $out/share/heroku
19     substituteInPlace $out/share/heroku/bin/run \
20       --replace "/usr/bin/env node" "${nodejs}/bin/node"
21     makeWrapper $out/share/heroku/bin/run $out/bin/heroku \
22       --set HEROKU_DISABLE_AUTOUPDATE 1
23   '';
25   passthru.updateScript = writeScript "update-heroku" ''
26     #!/usr/bin/env nix-shell
27     #!nix-shell -I nixpkgs=./. -i bash -p nix-prefetch curl jq common-updater-scripts
28     resp="$(
29         curl -L "https://cli-assets.heroku.com/versions/heroku-linux-x64-tar-xz.json" \
30             | jq '[to_entries[] | { version: .key, url: .value } | select(.version|contains("-")|not)] | sort_by(.version|split(".")|map(tonumber)) | .[-1]'
31     )"
32     url="$(jq <<<"$resp" .url --raw-output)"
33     version="$(jq <<<"$resp" .version --raw-output)"
34     hash="$(nix-prefetch fetchzip --url "$(jq <<<"$resp" .url --raw-output)")"
35     update-source-version heroku "$version" "$hash" "$url"
36   '';
38   meta = {
39     homepage = "https://devcenter.heroku.com/articles/heroku-cli";
40     description = "Everything you need to get started using Heroku";
41     mainProgram = "heroku";
42     maintainers = with lib.maintainers; [ aflatter mirdhyn marsam ];
43     license = lib.licenses.mit;
44     platforms = with lib.platforms; unix;
45   };