buildpack 0.29.0 -> 0.30.0 https://repology.org/project/pack-buildpack-cli/versions attrpath: buildpack Checking auto update branch... No auto update branch exists Old version 0.29.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "pack"; version = "0.30.0"; src = fetchFromGitHub { owner = "buildpacks"; repo = pname; rev = "v${version}"; hash = "sha256-o9c1MUxyZpqk10UbW5y9JqX2Z62K7hDeSEiFGIUnoAs="; }; vendorHash = "sha256-k2ZgFjSO3yHS0pO7xZx6a5E4J35ou2AmjbiV2M9OGTk="; nativeBuildInputs = [ installShellFiles ]; subPackages = [ "cmd/pack" ]; ldflags = [ "-s" "-w" "-X github.com/buildpacks/pack.Version=${version}" ]; postInstall = '' installShellCompletion --cmd pack \ --zsh $(PACK_HOME=$PWD $out/bin/pack completion --shell zsh) \ --bash $(PACK_HOME=$PWD $out/bin/pack completion --shell bash) \ --fish $(PACK_HOME=$PWD $out/bin/pack completion --shell fish) ''; meta = with lib; { homepage = "https://buildpacks.io/"; changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}"; description = "CLI for building apps using Cloud Native Buildpacks"; license = licenses.asl20; maintainers = [ maintainers.marsam ]; }; }