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

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

37 lines
1.1 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";
2024-02-15 12:30:38 +00:00
version = "0.33.2";
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}";
2024-02-15 12:30:38 +00:00
hash = "sha256-nKMgyMPPBon3DChkikNvb2s41osub+fdCeGFzXwhQJo=";
2019-11-17 21:20:00 +00:00
};
2024-02-15 12:30:38 +00:00
vendorHash = "sha256-/2GO99kfZTra7tJy90Y0nixNafiP65ZpDQnvEhOaGoA=";
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 --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/";
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 ];
};
}