2022-12-05T06:52:06 bosh-cli 7.0.1 -> 7.1.0 https://repology.org/metapackage/bosh-cli/versions 2022-12-05T06:52:08 attrpath: bosh-cli 2022-12-05T06:52:08 Checking auto update branch... 2022-12-05T06:52:09 No auto update branch exists 2022-12-05T06:52:09 Old version 7.0.1" not present in master derivation file with contents: { lib , fetchFromGitHub , buildGoModule , makeWrapper , openssh }: buildGoModule rec { pname = "bosh-cli"; version = "7.1.0"; src = fetchFromGitHub { owner = "cloudfoundry"; repo = pname; rev = "v${version}"; sha256 = "sha256-wsCVeCAgZ2RPT6cle1YHB5CZdcPmKOVuUQlA5d3H7iI="; }; vendorSha256 = 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"; }; }