2020-08-18 09:20:00 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2019-11-17 21:20:00 +00:00
|
|
|
|
2020-08-18 09:20:00 +00:00
|
|
|
buildGoModule rec {
|
2019-11-17 21:20:00 +00:00
|
|
|
pname = "pack";
|
2022-08-01 03:51:05 +00:00
|
|
|
version = "0.27.0";
|
2019-11-17 21:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-12-19 21:20:00 +00:00
|
|
|
owner = "buildpacks";
|
2019-11-17 21:20:00 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-08-01 03:51:05 +00:00
|
|
|
sha256 = "sha256-b1lqgY6pu4yt3yY2UupG7PQUkgotK0VDffCW/0thxoo=";
|
2019-11-17 21:20:00 +00:00
|
|
|
};
|
|
|
|
|
2022-08-01 03:51:05 +00:00
|
|
|
vendorSha256 = "sha256-JqSk4w0chtWNYDQXo8oh5spAxor2kixo3fZcpV4LJ+8=";
|
2020-08-18 09:20:00 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2019-11-17 21:20:00 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/pack" ];
|
|
|
|
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/buildpacks/pack.Version=${version}" ];
|
2020-08-18 09:20:00 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2022-05-20 04:20:00 +00:00
|
|
|
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)
|
2020-08-18 09:20:00 +00:00
|
|
|
'';
|
2019-11-17 21:20:00 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildpacks.io/";
|
2020-01-26 09:20:00 +00:00
|
|
|
changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}";
|
2020-08-18 09:20:00 +00:00
|
|
|
description = "CLI for building apps using Cloud Native Buildpacks";
|
2019-11-17 21:20:00 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|