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
48 lines
821 B
Nix
48 lines
821 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
containers,
|
|
junit_alcotest,
|
|
astring,
|
|
base64,
|
|
x509,
|
|
yojson,
|
|
zarith,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "jose";
|
|
version = "0.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ulrikstrid/ocaml-jose/releases/download/v${version}/${pname}-${version}.tbz";
|
|
hash = "sha256-F6Odq5JXTkAxdqV3HQusoF+9rvt4BZytslKnsIjJLI8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
astring
|
|
base64
|
|
x509
|
|
yojson
|
|
zarith
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
containers
|
|
junit_alcotest
|
|
];
|
|
|
|
meta = {
|
|
description = "JOSE specification implementation in OCaml";
|
|
homepage = "https://github.com/ulrikstrid/ocaml-jose";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
ulrikstrid
|
|
toastal
|
|
marijanp
|
|
];
|
|
};
|
|
}
|