46 lines
976 B
Nix
46 lines
976 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
makeWrapper,
|
|
openssh,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bosh-cli";
|
|
|
|
version = "7.9.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudfoundry";
|
|
repo = "bosh-cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Y3wk05IeWoH5YCrA+CJEtqvwCUxAvYdoYD+qDwTJo5Q=";
|
|
};
|
|
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";
|
|
};
|
|
}
|