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

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

50 lines
1.7 KiB
Nix
Raw Normal View History

2022-04-08 13:58:19 +00:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2021-08-20 10:34:40 +00:00
buildGoModule rec {
pname = "konstraint";
2023-12-03 12:36:19 +00:00
version = "0.33.0";
2021-08-20 10:34:40 +00:00
src = fetchFromGitHub {
owner = "plexsystems";
repo = pname;
rev = "v${version}";
2023-12-03 12:36:19 +00:00
sha256 = "sha256-rZDLnr3FNLNOadmST70p5ZusK+p9SiUmVrnc5TrKuK4=";
2021-08-20 10:34:40 +00:00
};
2023-12-03 12:36:19 +00:00
vendorHash = "sha256-gaY3U6+Emk6La5wPyT5TvgTwPsh2Ws2t7C8B5T4c46E=";
2021-08-20 10:34:40 +00:00
# Exclude go within .github folder
excludedPackages = ".github";
2022-04-08 13:58:19 +00:00
nativeBuildInputs = [ installShellFiles ];
2021-08-20 10:34:40 +00:00
ldflags = [ "-s" "-w" "-X github.com/plexsystems/konstraint/internal/commands.version=${version}" ];
2022-04-08 13:58:19 +00:00
postInstall = ''
installShellCompletion --cmd konstraint \
--bash <($out/bin/konstraint completion bash) \
--fish <($out/bin/konstraint completion fish) \
--zsh <($out/bin/konstraint completion zsh)
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/konstraint --help
$out/bin/konstraint --version | grep "${version}"
runHook postInstallCheck
'';
2021-08-20 10:34:40 +00:00
meta = with lib; {
homepage = "https://github.com/plexsystems/konstraint";
changelog = "https://github.com/plexsystems/konstraint/releases/tag/v${version}";
description = "A policy management tool for interacting with Gatekeeper";
longDescription = ''
konstraint is a CLI tool to assist with the creation and management of templates and constraints when using
Gatekeeper. Automatically copy Rego to the ConstraintTemplate. Automatically update all ConstraintTemplates with
library changes. Enable writing the same policies for Conftest and Gatekeeper.
'';
license = licenses.mit;
maintainers = with maintainers; [ jk ];
};
}