biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / opcr-policy / default.nix
blob568b6a172c4ca34b3aba2aedd0d92de822774e69
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "opcr-policy";
8   version = "0.2.12";
10   src = fetchFromGitHub {
11     owner = "opcr-io";
12     repo = "policy";
13     rev = "v${version}";
14     sha256 = "sha256-3rMSk4oRqPWqJh4o+oGtfqpEz4zkr4CVaIyMvBopN/o=";
15   };
16   vendorHash = "sha256-ZP4EM7NZwfTLx0e47DikgMI7Y+IYmREdLL/r/CC9P7c=";
18   ldflags = [ "-s" "-w" "-X github.com/opcr-io/policy/pkg/version.ver=${version}" ];
20   subPackages = [ "cmd/policy" ];
21   # disable go workspaces
22   env.GOWORK = "off";
24   doCheck = false;
26   doInstallCheck = true;
27   installCheckPhase = ''
28     runHook preInstallCheck
30     $out/bin/policy --help
31     $out/bin/policy version | grep "version: ${version}"
33     runHook postInstallCheck
34   '';
36   meta = with lib; {
37     mainProgram = "policy";
38     homepage = "https://www.openpolicyregistry.io/";
39     changelog = "https://github.com/opcr-io/policy/releases/tag/v${version}";
40     description = "CLI for managing authorization policies";
41     longDescription = ''
42       The policy CLI is a tool for building, versioning and publishing your authorization policies.
43       It uses OCI standards to manage artifacts, and the Open Policy Agent (OPA) to compile and run.
44     '';
45     license = licenses.asl20;
46     maintainers = with maintainers; [ naphta jk ];
47   };