mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
Compare commits
1 Commits
d8ca282fc0
...
ory-hydra
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8db2d7a1ff |
19
pkgs/servers/ory-hydra/default.nix
Normal file
19
pkgs/servers/ory-hydra/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
||||
buildGoModule rec {
|
||||
pname = "ory-hydra";
|
||||
version = "2.0.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ory";
|
||||
repo = "hydra";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-TFJZGLqzJHFqabZaVh1219xGzNuJ1CRiZADtvWo8964=";
|
||||
};
|
||||
vendorSha256 = "sha256-xGe50VHnjyCJ3XGJ95S+Axngcp/Jmkn/V65iDYVmE+c=";
|
||||
subPackages = [ "." ];
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ arianvp ];
|
||||
homepage = "https://www.ory.sh/hydra/";
|
||||
license = licenses.asl20;
|
||||
description = "OpenID Certified™ OpenID Connect and OAuth Provider written in Go - cloud native, security-first, open source API security for your infrastructure. SDKs for any language. Works with Hardware Security Modules. Compatible with MITREid.";
|
||||
};
|
||||
}
|
||||
@@ -39645,4 +39645,6 @@ with pkgs;
|
||||
udict = callPackage ../applications/misc/udict { };
|
||||
|
||||
duden = callPackage ../applications/misc/duden { };
|
||||
|
||||
ory-hydra = callPackage ../servers/ory-hydra { };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user