biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / cstruct / sexp.nix
blob3b28cda15afc1fa2ad55968cd50060cabc521653
1 { lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }:
3 if lib.versionOlder (cstruct.version or "1") "3"
4 then cstruct
5 else
7 buildDunePackage rec {
8   pname = "cstruct-sexp";
9   inherit (cstruct) version src meta;
11   minimalOCamlVersion = "4.08";
12   duneVersion = "3";
14   doCheck = true;
15   checkInputs = [ alcotest ];
17   propagatedBuildInputs = [ cstruct sexplib ];