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

33 lines
938 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";
version = "7.22.4";
2018-09-17 20:23:44 +00:00
src = fetchurl {
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
2019-03-08 05:51:51 +00:00
sha256 = "067kvkdn7yvzb3ws6yjsfbypww914fclhnxrh2dw1hc6cazfgmqp";
};
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 = {
2018-09-17 21:38:22 +00:00
homepage = https://cli.heroku.com;
2018-09-17 20:23:44 +00:00
description = "Everything you need to get started using Heroku";
maintainers = with lib.maintainers; [ aflatter mirdhyn peterhoeg ];
license = lib.licenses.mit;
platforms = with lib.platforms; unix;
};
2015-03-24 10:03:07 +00:00
}