mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{
|
|
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";
|
|
};
|
|
}
|