2020-04-27 10:30:47 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, installShellFiles }:
|
2017-11-24 12:12:47 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cloudfoundry-cli";
|
2019-08-24 16:21:37 +01:00
|
|
|
version = "6.46.1";
|
2017-11-24 12:12:47 +00:00
|
|
|
|
|
|
|
goPackagePath = "code.cloudfoundry.org/cli";
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-04-21 20:57:22 +01:00
|
|
|
owner = "cloudfoundry";
|
|
|
|
repo = "cli";
|
2017-11-24 12:12:47 +00:00
|
|
|
rev = "v${version}";
|
2019-08-24 16:21:37 +01:00
|
|
|
sha256 = "0dqrkimwhw016icgyf4cyipzy6vdz5jgickm33xxd9018dh3ibwq";
|
2017-11-24 12:12:47 +00:00
|
|
|
};
|
|
|
|
|
2020-04-27 10:30:47 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2018-12-18 17:53:01 +00:00
|
|
|
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";
|
|
|
|
|
2018-07-22 20:21:47 +01:00
|
|
|
buildPhase = ''
|
|
|
|
cd go/src/${goPackagePath}
|
2018-12-18 17:53:01 +00:00
|
|
|
CF_BUILD_DATE="1970-01-01" make $makeTarget
|
|
|
|
cp $makeTarget out/cf
|
2017-11-24 12:12:47 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-12-20 22:49:13 +00:00
|
|
|
install -Dm555 out/cf "$bin/bin/cf"
|
2020-04-27 10:30:47 +01:00
|
|
|
installShellCompletion --bash "$src/ci/installers/completion/cf"
|
2017-11-24 12:12:47 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The official command line client for Cloud Foundry";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/cloudfoundry/cli";
|
2017-11-24 12:12:47 +00:00
|
|
|
maintainers = with maintainers; [ ris ];
|
|
|
|
license = licenses.asl20;
|
2018-12-18 17:53:01 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2017-11-24 12:12:47 +00:00
|
|
|
};
|
|
|
|
}
|