33 lines
947 B
Nix
33 lines
947 B
Nix
|
{ stdenv, lib, fetchurl, makeWrapper, nodejs }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "heroku";
|
||
|
version = "7.39.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
|
||
|
sha256 = "13bbqxklpwmh84a1dc6inphqg1nm2l0b7vqs3x9lrjm4bg7c8kjr";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
installPhase = ''
|
||
|
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
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://cli.heroku.com";
|
||
|
description = "Everything you need to get started using Heroku";
|
||
|
maintainers = with lib.maintainers; [ aflatter mirdhyn peterhoeg marsam ];
|
||
|
license = lib.licenses.mit;
|
||
|
platforms = with lib.platforms; unix;
|
||
|
};
|
||
|
}
|