python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / uri / sexp.nix
blobba970b1d6c51e6be78e774ed9fc2aa67dab199c8
1 { lib, ocaml, buildDunePackage, uri, ounit, ppx_sexp_conv, sexplib0 }:
3 if lib.versionOlder ocaml.version "4.04"
4 then throw "uri-sexp is not available for OCaml ${ocaml.version}"
5 else
7 buildDunePackage {
8   pname = "uri-sexp";
9   inherit (uri) version useDune2 src meta;
11   checkInputs = [ ounit ];
12   propagatedBuildInputs = [ ppx_sexp_conv sexplib0 uri ];
13   doCheck = lib.versionAtLeast ocaml.version "4.08";