2019-08-21 22:12:37 +01:00
|
|
|
{ lib, ocaml, buildDunePackage, uri, ounit, ppx_sexp_conv, sexplib0 }:
|
|
|
|
|
|
|
|
if !lib.versionAtLeast ocaml.version "4.04"
|
|
|
|
then throw "uri-sexp is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "uri-sexp";
|
2020-12-06 08:36:39 +00:00
|
|
|
inherit (uri) version useDune2 src meta;
|
2019-08-21 22:12:37 +01:00
|
|
|
|
2020-12-06 08:36:39 +00:00
|
|
|
checkInputs = [ ounit ];
|
2019-08-21 22:12:37 +01:00
|
|
|
propagatedBuildInputs = [ ppx_sexp_conv sexplib0 uri ];
|
2020-12-06 08:36:39 +00:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
2019-08-21 22:12:37 +01:00
|
|
|
}
|