biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / konstraint / default.nix
blob259b4063a1401082e3a65dbbfa2316eea6419ee3
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "konstraint";
5   version = "0.36.0";
7   src = fetchFromGitHub {
8     owner = "plexsystems";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-GQ79xsvlRDwrthtYgykwAJLP9rkk5iNHGelWAQzOZoA=";
12   };
13   vendorHash = "sha256-EBlJCcF8UcstaD1ztaAFL4MSfBOYvpeUygzXnQbW8N8=";
15   # Exclude go within .github folder
16   excludedPackages = ".github";
18   nativeBuildInputs = [ installShellFiles ];
20   ldflags = [ "-s" "-w" "-X github.com/plexsystems/konstraint/internal/commands.version=${version}" ];
22   postInstall = ''
23     installShellCompletion --cmd konstraint \
24       --bash <($out/bin/konstraint completion bash) \
25       --fish <($out/bin/konstraint completion fish) \
26       --zsh <($out/bin/konstraint completion zsh)
27   '';
29   doInstallCheck = true;
30   installCheckPhase = ''
31     runHook preInstallCheck
32     $out/bin/konstraint --help
33     $out/bin/konstraint --version | grep "${version}"
34     runHook postInstallCheck
35   '';
37   meta = with lib; {
38     homepage = "https://github.com/plexsystems/konstraint";
39     changelog = "https://github.com/plexsystems/konstraint/releases/tag/v${version}";
40     description = "A policy management tool for interacting with Gatekeeper";
41     mainProgram = "konstraint";
42     longDescription = ''
43       konstraint is a CLI tool to assist with the creation and management of templates and constraints when using
44       Gatekeeper. Automatically copy Rego to the ConstraintTemplate. Automatically update all ConstraintTemplates with
45       library changes. Enable writing the same policies for Conftest and Gatekeeper.
46     '';
47     license = licenses.mit;
48     maintainers = with maintainers; [ jk ];
49   };