summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-01-31 16:26:07 +0000
committerRobert Scott <code@humanleg.org.uk>2021-01-31 16:26:07 +0000
commit56052a15ef00c54bbbf36e18f47d1a148349d5cd (patch)
treeff53c3432120a71290e0596deecefbc249e8421d
parentfccda5aae6659e8abce91503194d618c2bfc6e59 (diff)
cloudfoundry-cli: 7.0.1 -> 7.2.0, switching to buildGoModule
-rw-r--r--pkgs/development/tools/cloudfoundry-cli/default.nix44
1 files changed, 18 insertions, 26 deletions
diff --git a/pkgs/development/tools/cloudfoundry-cli/default.nix b/pkgs/development/tools/cloudfoundry-cli/default.nix
index 4d7e226463fd..de032cc60e99 100644
--- a/pkgs/development/tools/cloudfoundry-cli/default.nix
+++ b/pkgs/development/tools/cloudfoundry-cli/default.nix
@@ -1,19 +1,20 @@
-{ lib, stdenv, buildGoPackage, fetchFromGitHub, fetchurl, installShellFiles }:
+{ lib, stdenv, buildGoModule, fetchFromGitHub, fetchurl, installShellFiles }:
-buildGoPackage rec {
+buildGoModule rec {
pname = "cloudfoundry-cli";
- version = "7.0.1";
-
- goPackagePath = "code.cloudfoundry.org/cli";
-
- subPackages = [ "." ];
+ version = "7.2.0";
src = fetchFromGitHub {
owner = "cloudfoundry";
repo = "cli";
rev = "v${version}";
- sha256 = "0jh4x7xlijp1naak5qyc256zkzlrczl6g4iz94s8wx2zj7np0q5l";
+ sha256 = "0cf5vshyz6j70sv7x43r1404hdcmkzxgdb7514kjilp5z6wsr1nv";
};
+ # vendor directory stale
+ deleteVendor = true;
+ vendorSha256 = "0p0s0dr7kpmmnim4fps62vj4zki2qxxdq5ww0fzrf1372xbl4kp2";
+
+ subPackages = [ "." ];
# upstream have helpfully moved the bash completion script to a separate
# repo which receives no releases or even tags
@@ -24,24 +25,16 @@ buildGoPackage rec {
nativeBuildInputs = [ installShellFiles ];
- makeTarget = let hps = stdenv.hostPlatform.system; in
- if hps == "x86_64-darwin" then
- "out/cf-cli_osx"
- else if hps == "x86_64-linux" then
- "out/cf-cli_linux_x86-64"
- else if hps == "i686-linux" then
- "out/cf-cli_linux_i686"
- else
- throw "make target for this platform unknown";
-
- buildPhase = ''
- cd go/src/${goPackagePath}
- CF_BUILD_DATE="1970-01-01" make $makeTarget
- cp $makeTarget out/cf
- '';
+ buildFlagsArray = [
+ "-ldflags="
+ "-s"
+ "-w"
+ "-X code.cloudfoundry.org/cli/version.binaryBuildDate=1970-01-01"
+ "-X code.cloudfoundry.org/cli/version.binaryVersion=${version}"
+ ];
- installPhase = ''
- install -Dm555 out/cf "$out/bin/cf"
+ postInstall = ''
+ mv "$out/bin/cli" "$out/bin/cf"
installShellCompletion --bash $bashCompletionScript
'';
@@ -50,6 +43,5 @@ buildGoPackage rec {
homepage = "https://github.com/cloudfoundry/cli";
maintainers = with maintainers; [ ris ];
license = licenses.asl20;
- platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}