nixpkgs/pkgs/development/tools/heroku/default.nix
R. RyanTM 0a35e363e3 heroku: 7.16.0 -> 7.18.2
* heroku: 7.16.0 -> 7.18.2 (#50096)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/heroku/versions

* heroku: split native build inputs
2018-11-25 10:20:50 +01:00

33 lines
948 B
Nix

{ stdenv, lib, fetchurl, makeWrapper, nodejs }:
stdenv.mkDerivation rec {
name = "heroku-${version}";
version = "7.18.2";
src = fetchurl {
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
sha256 = "1dplh3bfin1g0wwbkg76z3xsja4zqj350vrzl8jfw7982saxqywh";
};
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 ];
license = lib.licenses.mit;
platforms = with lib.platforms; unix;
};
}