2020-11-13 18:51:06 +00:00
|
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-11-08 12:47:13 +00:00
|
|
|
|
|
2020-11-13 18:51:06 +00:00
|
|
|
|
buildGoModule rec {
|
2019-11-08 12:47:13 +00:00
|
|
|
|
pname = "open-policy-agent";
|
2021-03-13 10:01:41 +00:00
|
|
|
|
version = "0.27.1";
|
2019-11-08 12:47:13 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "open-policy-agent";
|
|
|
|
|
repo = "opa";
|
|
|
|
|
rev = "v${version}";
|
2021-03-13 10:01:41 +00:00
|
|
|
|
sha256 = "sha256-IiPUmLgkD50LxOT+ZEf/UZJ0192GYOy9xk8U94Q0BWc=";
|
2019-11-08 12:47:13 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-11-13 18:51:06 +00:00
|
|
|
|
vendorSha256 = null;
|
|
|
|
|
|
2020-10-13 23:00:46 +01:00
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
2021-03-09 17:51:14 +00:00
|
|
|
|
preBuild = ''
|
|
|
|
|
buildFlagsArray+=("-ldflags" "-s -w -X github.com/open-policy-agent/opa/version.Version=${version}")
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
installCheckPhase = ''
|
|
|
|
|
runHook preInstallCheck
|
|
|
|
|
$out/bin/opa --help
|
|
|
|
|
$out/bin/opa version | grep "Version: ${version}"
|
|
|
|
|
runHook postInstallCheck
|
|
|
|
|
'';
|
2020-07-25 20:30:12 +01:00
|
|
|
|
|
2019-11-08 12:47:13 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "General-purpose policy engine";
|
2020-11-13 18:56:15 +00:00
|
|
|
|
longDescription = ''
|
|
|
|
|
The Open Policy Agent (OPA, pronounced "oh-pa") is an open source, general-purpose policy engine that unifies
|
|
|
|
|
policy enforcement across the stack. OPA provides a high-level declarative language that let’s you specify policy
|
|
|
|
|
as code and simple APIs to offload policy decision-making from your software. You can use OPA to enforce policies
|
|
|
|
|
in microservices, Kubernetes, CI/CD pipelines, API gateways, and more.
|
|
|
|
|
'';
|
2019-11-08 12:47:13 +00:00
|
|
|
|
homepage = "https://www.openpolicyagent.org";
|
|
|
|
|
license = licenses.asl20;
|
2021-03-09 17:51:14 +00:00
|
|
|
|
maintainers = with maintainers; [ lewo jk ];
|
2019-11-08 12:47:13 +00:00
|
|
|
|
};
|
|
|
|
|
}
|