heroku-cli: 5.6.14 -> 5.6.32

This commit is contained in:
Peter Hoeg 2017-03-12 14:40:26 +08:00
parent a7843b01f2
commit e18d518d66

View file

@ -6,7 +6,7 @@ with stdenv.lib;
let let
cli = buildGoPackage rec { cli = buildGoPackage rec {
name = "cli-${version}"; name = "cli-${version}";
version = "5.6.14"; version = "5.6.32";
goPackagePath = "github.com/heroku/cli"; goPackagePath = "github.com/heroku/cli";
@ -14,8 +14,21 @@ let
owner = "heroku"; owner = "heroku";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "v${version}";
sha256 = "11jccham1vkmh5284l6i30na4a4y7b1jhi2ci2z2wwx8m3gkypq9"; sha256 = "062aa79mv2njjb0ix7isbz6646wxmsldv27bsz5v2pbv597km0vz";
}; };
buildFlagsArray = ''
-ldflags=
-X=main.Version=${version}
-X=main.Channel=stable
-X=main.Autoupdate=no
'';
preCheck = ''
export HOME=/tmp
'';
doCheck = true;
}; };
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {