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

28 lines
765 B
Nix
Raw Normal View History

2016-05-23 12:54:04 +00:00
{ stdenv, fetchurl, postgresql, ruby, makeWrapper, nodejs-6_x }:
2015-03-24 10:03:07 +00:00
with stdenv.lib;
2015-03-24 10:03:07 +00:00
stdenv.mkDerivation rec {
2016-05-23 12:54:04 +00:00
version = "3.43.2";
2015-03-24 10:03:07 +00:00
name = "heroku-${version}";
meta = {
homepage = "https://toolbelt.heroku.com";
description = "Everything you need to get started using Heroku";
maintainers = with maintainers; [ aflatter mirdhyn ];
license = licenses.mit;
};
2015-03-24 10:03:07 +00:00
src = fetchurl {
url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz";
2016-05-23 12:54:04 +00:00
sha256 = "1sapbxg7pzi89c95k0vsp8k5bysggkjf58jwck2xs0y4ly36wbnc";
2015-03-24 10:03:07 +00:00
};
installPhase = ''
mkdir -p $out
cp -R * $out/
2016-05-23 12:54:04 +00:00
wrapProgram $out/bin/heroku --set HEROKU_NODE_PATH ${nodejs-6_x}/bin/node
2015-03-24 10:03:07 +00:00
'';
buildInputs = [ ruby postgresql makeWrapper ];
2015-03-24 10:03:07 +00:00
}