nixpkgs/pkgs/development/tools/heroku/default.nix

33 lines
947 B
Nix
Raw Normal View History

2018-09-17 20:23:44 +00:00
{ stdenv, lib, fetchurl, makeWrapper, nodejs }:
2015-03-24 10:03:07 +00:00
2018-09-17 20:23:44 +00:00
stdenv.mkDerivation rec {
2019-03-08 05:51:51 +00:00
pname = "heroku";
2020-05-25 18:41:38 +00:00
version = "7.41.1";
2018-09-17 20:23:44 +00:00
src = fetchurl {
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
2020-05-25 18:41:38 +00:00
sha256 = "12ilk0rkpwx8n9b7dird2jfmwnkqndlwjf5wgdcbl014mkl1411b";
};
nativeBuildInputs = [ makeWrapper ];
2018-09-17 20:33:52 +00:00
dontBuild = true;
installPhase = ''
2018-09-17 20:23:44 +00:00
mkdir -p $out/share/heroku $out/bin
cp -pr * $out/share/heroku
substituteInPlace $out/share/heroku/bin/run \
--replace "/usr/bin/env node" "${nodejs}/bin/node"
makeWrapper $out/share/heroku/bin/run $out/bin/heroku \
--set HEROKU_DISABLE_AUTOUPDATE 1
2015-03-24 10:03:07 +00:00
'';
2018-09-17 20:23:44 +00:00
meta = {
2020-02-13 13:30:29 +00:00
homepage = "https://cli.heroku.com";
2018-09-17 20:23:44 +00:00
description = "Everything you need to get started using Heroku";
2020-04-12 09:20:00 +00:00
maintainers = with lib.maintainers; [ aflatter mirdhyn peterhoeg marsam ];
2018-09-17 20:23:44 +00:00
license = lib.licenses.mit;
platforms = with lib.platforms; unix;
};
2015-03-24 10:03:07 +00:00
}