nixpkgs/pkgs/development/tools/buildpack/default.nix

35 lines
1 KiB
Nix
Raw Normal View History

2020-08-18 11:20:00 +02:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-11-17 22:20:00 +01:00
2020-08-18 11:20:00 +02:00
buildGoModule rec {
2019-11-17 22:20:00 +01:00
pname = "pack";
2021-02-05 09:58:55 +01:00
version = "0.17.0";
2019-11-17 22:20:00 +01:00
src = fetchFromGitHub {
owner = "buildpacks";
2019-11-17 22:20:00 +01:00
repo = pname;
rev = "v${version}";
2021-02-05 09:58:55 +01:00
sha256 = "sha256-VTQ3NOskBp7ic8a/nn/ZbALJVff+Pb/ZHHbld/OxQdo=";
2019-11-17 22:20:00 +01:00
};
2021-02-05 09:58:55 +01:00
vendorSha256 = "sha256-n8X2NyQiOpEQ0d/ek1kdxKFfaCFf0EucflVLZjOGMfY=";
2020-08-18 11:20:00 +02:00
nativeBuildInputs = [ installShellFiles ];
2019-11-17 22:20:00 +01:00
subPackages = [ "cmd/pack" ];
2020-08-18 11:20:00 +02:00
buildFlagsArray = [ "-ldflags=-s -w -X github.com/buildpacks/pack.Version=${version}" ];
postInstall = ''
installShellCompletion --bash --name pack.bash $(PACK_HOME=$PWD $out/bin/pack completion --shell bash)
installShellCompletion --zsh --name _pack $(PACK_HOME=$PWD $out/bin/pack completion --shell zsh)
'';
2019-11-17 22:20:00 +01:00
meta = with lib; {
homepage = "https://buildpacks.io/";
changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}";
2020-08-18 11:20:00 +02:00
description = "CLI for building apps using Cloud Native Buildpacks";
2019-11-17 22:20:00 +01:00
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}