Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
fetchurl,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cloudfoundry-cli";
|
|
version = "8.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudfoundry";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7ROrXGGzHTI83/SgBqcNJdlZlWzt8rAYdsNM2vgyDKA=";
|
|
};
|
|
vendorHash = "sha256-vWy93zOHh4kCQ/D4rKlbL0mcDbOStYOvC8G4bc6KRgg=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
# upstream have helpfully moved the bash completion script to a separate
|
|
# repo which receives no releases or even tags
|
|
bashCompletionScript = fetchurl {
|
|
url = "https://raw.githubusercontent.com/cloudfoundry/cli-ci/5f4f0d5d01e89c6333673f0fa96056749e71b3cd/ci/installers/completion/cf8";
|
|
sha256 = "06w26kpnjd3f2wdjhb4pp0kaq2gb9kf87v7pjd9n2g7s7qhdqyhy";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X code.cloudfoundry.org/cli/version.binaryBuildDate=1970-01-01"
|
|
"-X code.cloudfoundry.org/cli/version.binaryVersion=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv "$out/bin/cli" "$out/bin/cf"
|
|
installShellCompletion --bash $bashCompletionScript
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Official command line client for Cloud Foundry";
|
|
homepage = "https://github.com/cloudfoundry/cli";
|
|
maintainers = with maintainers; [ ris ];
|
|
mainProgram = "cf";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|