oathkeeper: init at 0.40.7
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
buildGoModule,
|
||||
lib,
|
||||
}:
|
||||
let
|
||||
pname = "oathkeeper";
|
||||
version = "0.40.7";
|
||||
commit = "c75695837f170334b526359f28967aa33d61bce6";
|
||||
in
|
||||
buildGoModule {
|
||||
inherit pname version commit;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ory";
|
||||
repo = "oathkeeper";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Y5bowCFR9S70ko0vNCwZnhOIKKGdqgcDEBEtZisKEig=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-+hh7MFYGPTaAlU/D0ROv5pw6YvzkAm6URuhP5jdgQtM=";
|
||||
|
||||
tags = [
|
||||
"sqlite"
|
||||
"json1"
|
||||
"hsm"
|
||||
];
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
# Pass versioning information via ldflags
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/ory/oathkeeper/internal/driver/config.Version=${version}"
|
||||
"-X github.com/ory/oathkeeper/internal/driver/config.Commit=${commit}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Open-source identity and access proxy that authorizes HTTP requests based on sets of rules";
|
||||
homepage = "https://www.ory.sh/oathkeeper/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ camcalaquian ];
|
||||
mainProgram = "oathkeeper";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user