mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
ocamlPackages.oidc: init at 0.2.0
This commit is contained in:
parent
aa0b417845
commit
72eee9b3dd
2 changed files with 41 additions and 0 deletions
39
pkgs/development/ocaml-modules/oidc/default.nix
Normal file
39
pkgs/development/ocaml-modules/oidc/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildDunePackage,
|
||||||
|
fetchurl,
|
||||||
|
jose,
|
||||||
|
uri,
|
||||||
|
junit_alcotest,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "oidc";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/ulrikstrid/ocaml-oidc/releases/download/v${version}/${pname}-v${version}.tbz";
|
||||||
|
hash = "sha256-NE/OW5BesVWhYfTmh3jP+A0TGML7m/Nw+tnafjMCIFo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
jose
|
||||||
|
uri
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [
|
||||||
|
junit_alcotest
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "OpenID Connect implementation in OCaml.";
|
||||||
|
homepage = "https://github.com/ulrikstrid/ocaml-oidc";
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
maintainers = with lib.maintainers; [
|
||||||
|
ulrikstrid
|
||||||
|
toastal
|
||||||
|
marijanp
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1585,6 +1585,8 @@ let
|
||||||
|
|
||||||
ohex = callPackage ../development/ocaml-modules/ohex { };
|
ohex = callPackage ../development/ocaml-modules/ohex { };
|
||||||
|
|
||||||
|
oidc = callPackage ../development/ocaml-modules/oidc { };
|
||||||
|
|
||||||
ojs = callPackage ../development/ocaml-modules/gen_js_api/ojs.nix { };
|
ojs = callPackage ../development/ocaml-modules/gen_js_api/ojs.nix { };
|
||||||
|
|
||||||
omd = callPackage ../development/ocaml-modules/omd { };
|
omd = callPackage ../development/ocaml-modules/omd { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue