Compare commits

...

1 Commits

Author SHA1 Message Date
Arian van Putten
8db2d7a1ff ory-hydra: init at 2.0.3 2023-03-20 10:50:41 +01:00
2 changed files with 21 additions and 0 deletions

View 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.";
};
}

View File

@@ -39645,4 +39645,6 @@ with pkgs;
udict = callPackage ../applications/misc/udict { };
duden = callPackage ../applications/misc/duden { };
ory-hydra = callPackage ../servers/ory-hydra { };
}