nixpkgs/pkgs/applications/networking/cluster/cloudfoundry-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, fetchurl, installShellFiles }:
2017-11-24 12:12:47 +00:00
buildGoModule rec {
pname = "cloudfoundry-cli";
2022-06-25 12:31:35 +00:00
version = "8.4.0";
2017-11-24 12:12:47 +00:00
src = fetchFromGitHub {
2018-04-21 19:57:22 +00:00
owner = "cloudfoundry";
repo = "cli";
2017-11-24 12:12:47 +00:00
rev = "v${version}";
2022-06-25 12:31:35 +00:00
sha256 = "sha256-+UP1abTDYLn+lhMvo9G57X0nlColai7isNswog+3Y40=";
2020-07-27 20:33:58 +00:00
};
2022-06-25 12:31:35 +00:00
vendorSha256 = "sha256-opVnj6dTtHrPYM1v+EFw39XDMF/fampAn7n+JvlBcJk=";
subPackages = [ "." ];
2020-07-27 20:33:58 +00:00
# upstream have helpfully moved the bash completion script to a separate
# repo which receives no releases or even tags
bashCompletionScript = fetchurl {
2021-10-10 17:53:22 +00:00
url = "https://raw.githubusercontent.com/cloudfoundry/cli-ci/5f4f0d5d01e89c6333673f0fa96056749e71b3cd/ci/installers/completion/cf8";
sha256 = "06w26kpnjd3f2wdjhb4pp0kaq2gb9kf87v7pjd9n2g7s7qhdqyhy";
2017-11-24 12:12:47 +00:00
};
nativeBuildInputs = [ installShellFiles ];
2021-08-26 06:45:51 +00:00
ldflags = [
"-s"
"-w"
"-X code.cloudfoundry.org/cli/version.binaryBuildDate=1970-01-01"
"-X code.cloudfoundry.org/cli/version.binaryVersion=${version}"
];
2017-11-24 12:12:47 +00:00
postInstall = ''
mv "$out/bin/cli" "$out/bin/cf"
2020-07-27 20:33:58 +00:00
installShellCompletion --bash $bashCompletionScript
2017-11-24 12:12:47 +00:00
'';
meta = with lib; {
2017-11-24 12:12:47 +00:00
description = "The official command line client for Cloud Foundry";
homepage = "https://github.com/cloudfoundry/cli";
2017-11-24 12:12:47 +00:00
maintainers = with maintainers; [ ris ];
mainProgram = "cf";
2017-11-24 12:12:47 +00:00
license = licenses.asl20;
};
}