{ lib, buildGoModule, fetchFromGitHub, installShellFiles, }: let pname = "pack"; version = "0.37.0"; in buildGoModule { inherit pname version; src = fetchFromGitHub { owner = "buildpacks"; repo = "pack"; rev = "refs/tags/v${version}"; hash = "sha256-QCN0UvWa5u9XX5LvY3yD8Xz2s1XzZUg/WXnAfWwZnY0="; }; vendorHash = "sha256-W8FTk2eJYaTE9gCRwrT+mDhda/ZZeCytqQ9vvVZZHSQ="; 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 = { homepage = "https://buildpacks.io/"; changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}"; description = "CLI for building apps using Cloud Native Buildpacks"; mainProgram = "pack"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ momeemt ]; }; }