{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "pack"; version = "0.33.1"; src = fetchFromGitHub { owner = "buildpacks"; repo = pname; rev = "v${version}"; hash = "sha256-5pQ51T9QO0Lt2XFM8L2liFckxI+Y1x+S73lMF8Vv3A4="; }; vendorHash = "sha256-UCNpKBsdwWmllgIi/3Dr6lWJLOh6okYwOHmRfRW0iAQ="; 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 ]; }; }