cloudfoundry-cli: init at 6.32.0

This commit is contained in:
Robert Scott 2017-11-24 12:12:47 +00:00 committed by Orivej Desh
parent 41740ec039
commit 77a3331a10
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ stdenv, buildGoPackage, fetchFromGitHub, go }:
buildGoPackage rec {
name = "cloudfoundry-cli-${version}";
version = "6.32.0";
goPackagePath = "code.cloudfoundry.org/cli";
subPackages = [ "." ];
src = fetchFromGitHub {
rev = "v${version}";
owner = "cloudfoundry-attic";
repo = "cli-with-i18n";
sha256 = "16r8zvahn4b98krmyb8zq9370i6572dhz88bfxb3fnddcv6zy1ng";
};
outputs = [ "out" ];
buildFlagsArray = ''
-ldflags= -X ${goPackagePath}/version.binaryVersion=${version}
'';
installPhase = ''
install -Dm555 go/bin/cli "$out/bin/cf"
remove-references-to -t ${go} "$out/bin/cf"
install -Dm444 -t "$out/share/bash-completion/completions/" "$src/ci/installers/completion/cf"
'';
meta = with stdenv.lib; {
description = "The official command line client for Cloud Foundry";
homepage = https://github.com/cloudfoundry/cli;
maintainers = with maintainers; [ ris ];
license = licenses.asl20;
};
}

View File

@ -7089,6 +7089,8 @@ with pkgs;
"cl-launch" = callPackage ../development/tools/misc/cl-launch {};
cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli { };
coan = callPackage ../development/tools/analysis/coan { };
compile-daemon = callPackage ../development/tools/compile-daemon { };