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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.0 KiB
Nix
Raw Normal View History

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-04-05 14:11:50 +00:00
version = "0.24.1";
2019-11-17 21:20:00 +00:00
src = fetchFromGitHub {
owner = "buildpacks";
2019-11-17 21:20:00 +00:00
repo = pname;
rev = "v${version}";
2022-04-05 14:11:50 +00:00
sha256 = "sha256-zwvZ99SLeYQDSzrEy2eYPMyFh9B6LWZT3tY92EOrXnU=";
2019-11-17 21:20:00 +00:00
};
2022-02-14 17:12:51 +00:00
vendorSha256 = "sha256-4uMd0KaV5xrxuJ9yqpxbD3YTNaBHsH2d/IRtYRyN5+0=";
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 = ''
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 21:20:00 +00:00
meta = with lib; {
homepage = "https://buildpacks.io/";
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 ];
};
}