7ea0a17b9a
Diff: https://github.com/buildpacks/pack/compare/v0.30.0...v0.31.0 Changelog: https://github.com/buildpacks/pack/releases/tag/v0.31.0
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "pack";
|
|
version = "0.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buildpacks";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-v46Yfj0gRT84R1vttKkpan28dkeJWHNgzKzI+ZVCiNc=";
|
|
};
|
|
|
|
vendorHash = "sha256-KZ2nAd+5D5PFgSDhNeHg6Hnp+h7HqZ2CRsKUek0KZhM=";
|
|
|
|
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 ];
|
|
};
|
|
}
|