1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00
nixpkgs/pkgs/development/ocaml-modules/uri/sexp.nix

15 lines
413 B
Nix
Raw Normal View History

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
}