cloudfoundry-cli: 6.36.1 -> 6.37.0

upstream seems to have added new make build system - adapt to use that
This commit is contained in:
Robert Scott 2018-07-22 20:21:47 +01:00
parent 828bb68c20
commit e017ce0839

View File

@ -2,7 +2,7 @@
buildGoPackage rec { buildGoPackage rec {
name = "cloudfoundry-cli-${version}"; name = "cloudfoundry-cli-${version}";
version = "6.36.1"; version = "6.37.0";
goPackagePath = "code.cloudfoundry.org/cli"; goPackagePath = "code.cloudfoundry.org/cli";
@ -12,17 +12,18 @@ buildGoPackage rec {
owner = "cloudfoundry"; owner = "cloudfoundry";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "v${version}";
sha256 = "19inl7qs2acs59p3gnl5zdsxym0wp2rn05q0zfg7rwf5sjh68amp"; sha256 = "1v4f1fyydpzkfir46g4ppbf3zmk3ym6kxswpkdjls8h3dbb2fbnv";
}; };
outputs = [ "out" ]; outputs = [ "out" ];
buildFlagsArray = '' buildPhase = ''
-ldflags= -X ${goPackagePath}/version.binaryVersion=${version} cd go/src/${goPackagePath}
CF_BUILD_DATE="1970-01-01" make build
''; '';
installPhase = '' installPhase = ''
install -Dm555 go/bin/cli "$out/bin/cf" install -Dm555 out/cf "$out/bin/cf"
remove-references-to -t ${go} "$out/bin/cf" remove-references-to -t ${go} "$out/bin/cf"
install -Dm444 -t "$out/share/bash-completion/completions/" "$src/ci/installers/completion/cf" install -Dm444 -t "$out/share/bash-completion/completions/" "$src/ci/installers/completion/cf"
''; '';