mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
let
|
|
pname = "pack";
|
|
version = "0.36.0";
|
|
in
|
|
buildGoModule {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buildpacks";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-WdYV8Pcnzbt3Sd+0wYkw/htHruqFFYopPsRP/xs9WPI=";
|
|
};
|
|
|
|
vendorHash = "sha256-RfidlZHyC/dcIuisvIGzd7Vqk7j2DQuJjgERs8lfr0A=";
|
|
|
|
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 = {
|
|
homepage = "https://buildpacks.io/";
|
|
changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}";
|
|
description = "CLI for building apps using Cloud Native Buildpacks";
|
|
mainProgram = "pack";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ momeemt ];
|
|
};
|
|
}
|