2025-08-15 01:35:46 +00:00

46 lines
976 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
makeWrapper,
openssh,
}:
buildGoModule rec {
pname = "bosh-cli";
version = "7.9.9";
src = fetchFromGitHub {
owner = "cloudfoundry";
repo = "bosh-cli";
rev = "v${version}";
sha256 = "sha256-JfSZU+FgNseU8ZKlyPwiuE7Pplp0s0CKXELoTkIy7cc=";
};
vendorHash = null;
postPatch = ''
substituteInPlace cmd/version.go --replace '[DEV BUILD]' '${version}'
'';
nativeBuildInputs = [ makeWrapper ];
subPackages = [ "." ];
doCheck = false;
postInstall = ''
mv $out/bin/bosh-cli $out/bin/bosh
wrapProgram $out/bin/bosh --prefix PATH : '${lib.makeBinPath [ openssh ]}'
'';
meta = {
description = "Command line interface to CloudFoundry BOSH";
homepage = "https://bosh.io";
changelog = "https://github.com/cloudfoundry/bosh-cli/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ris ];
mainProgram = "bosh";
};
}