depot/third_party/nixpkgs/pkgs/development/tools/buildpack/default.nix
Default email c7f94ff3ce Project import generated by Copybara.
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
2023-08-22 22:05:09 +02:00

36 lines
1.1 KiB
Nix

{ 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 ];
};
}