mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
heroku-cli: 5.6.14 -> 5.6.32
This commit is contained in:
parent
a7843b01f2
commit
e18d518d66
1 changed files with 15 additions and 2 deletions
|
@ -6,7 +6,7 @@ with stdenv.lib;
|
|||
let
|
||||
cli = buildGoPackage rec {
|
||||
name = "cli-${version}";
|
||||
version = "5.6.14";
|
||||
version = "5.6.32";
|
||||
|
||||
goPackagePath = "github.com/heroku/cli";
|
||||
|
||||
|
@ -14,8 +14,21 @@ let
|
|||
owner = "heroku";
|
||||
repo = "cli";
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue