My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/tools/open-policy-agent/default.nix

24 lines
608 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "open-policy-agent";
version = "0.15.0";
goPackagePath = "github.com/open-policy-agent/opa";
src = fetchFromGitHub {
owner = "open-policy-agent";
repo = "opa";
rev = "v${version}";
sha256 = "0i9735v73a7wfq02p4hsy61g7d7bip6zmb8bnsiz2ma84g2g533w";
};
goDeps = ./deps.nix;
meta = with lib; {
description = "General-purpose policy engine";
homepage = "https://www.openpolicyagent.org";
license = licenses.asl20;
maintainers = with maintainers; [ lewo ];
platforms = platforms.all;
};
}