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

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

38 lines
1.1 KiB
Nix
Raw Permalink 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";
2024-02-15 13:30:38 +01:00
version = "0.33.2";
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}";
2024-02-15 13:30:38 +01:00
hash = "sha256-nKMgyMPPBon3DChkikNvb2s41osub+fdCeGFzXwhQJo=";
2019-11-17 22:20:00 +01:00
};
2024-02-15 13:30:38 +01:00
vendorHash = "sha256-/2GO99kfZTra7tJy90Y0nixNafiP65ZpDQnvEhOaGoA=";
2020-08-18 11:20:00 +02:00
nativeBuildInputs = [ installShellFiles ];
2019-11-17 22:20:00 +01:00
subPackages = [ "cmd/pack" ];
2021-08-26 08:45:51 +02:00
ldflags = [ "-s" "-w" "-X github.com/buildpacks/pack.Version=${version}" ];
2020-08-18 11:20:00 +02: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 11:20:00 +02:00
'';
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";
mainProgram = "pack";
2019-11-17 22:20:00 +01:00
license = licenses.asl20;
2024-04-24 06:20:00 +02:00
maintainers = [ ];
2019-11-17 22:20:00 +01:00
};
}