mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "pack";
|
|
version = "0.27.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buildpacks";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-b1lqgY6pu4yt3yY2UupG7PQUkgotK0VDffCW/0thxoo=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-JqSk4w0chtWNYDQXo8oh5spAxor2kixo3fZcpV4LJ+8=";
|
|
|
|
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 = with lib; {
|
|
homepage = "https://buildpacks.io/";
|
|
changelog = "https://github.com/buildpacks/pack/releases/tag/v${version}";
|
|
description = "CLI for building apps using Cloud Native Buildpacks";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|