bosh-cli 7.5.2 -> 7.5.4 https://repology.org/project/bosh-cli/versions attrpath: bosh-cli Checking auto update branch... No auto update branch exists Old version 7.5.2" not present in master derivation file with contents: { lib , fetchFromGitHub , buildGoModule , makeWrapper , openssh }: buildGoModule rec { pname = "bosh-cli"; version = "7.5.4"; src = fetchFromGitHub { owner = "cloudfoundry"; repo = pname; rev = "v${version}"; sha256 = "sha256-aNzKp7QwyhC/ado0NrCyxrRZu+ePGBNSq31/Iw6k6n0="; }; 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 = with lib; { description = "A command line interface to CloudFoundry BOSH"; homepage = "https://bosh.io"; changelog = "https://github.com/cloudfoundry/bosh-cli/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ ris ]; mainProgram = "bosh"; }; }