Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
821 B
Nix
55 lines
821 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
alcotest,
|
|
digestif,
|
|
fmt,
|
|
yojson,
|
|
ppxlib,
|
|
base64,
|
|
re,
|
|
ppx_deriving,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "jwto";
|
|
version = "0.4.0";
|
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sporto";
|
|
repo = "jwto";
|
|
rev = version;
|
|
hash = "sha256-TOWwNyrOqboCm8Y4mM6GgtmxGO3NmyDdAX7m8CifA7Y=";
|
|
};
|
|
|
|
buildInputs = [ ppxlib ];
|
|
|
|
propagatedBuildInputs = [
|
|
digestif
|
|
fmt
|
|
yojson
|
|
base64
|
|
re
|
|
ppx_deriving
|
|
];
|
|
|
|
checkInputs = [ alcotest ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/sporto/jwto";
|
|
description = "JSON Web Tokens (JWT) for OCaml";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
Zimmi48
|
|
jtcoolen
|
|
];
|
|
};
|
|
}
|