2020-04-09 18:58:32 +02:00
|
|
|
{ lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }:
|
2019-08-24 09:02:26 +02:00
|
|
|
|
|
|
|
if !lib.versionAtLeast (cstruct.version or "1") "3"
|
|
|
|
then cstruct
|
|
|
|
else
|
|
|
|
|
2020-04-09 18:58:29 +02:00
|
|
|
buildDunePackage rec {
|
2019-08-24 09:02:26 +02:00
|
|
|
pname = "cstruct-sexp";
|
|
|
|
inherit (cstruct) version src meta;
|
|
|
|
|
2020-04-09 18:58:32 +02:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.03";
|
2020-04-09 18:58:29 +02:00
|
|
|
checkInputs = lib.optional doCheck alcotest;
|
2019-08-24 09:02:26 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ cstruct sexplib ];
|
|
|
|
}
|
|
|
|
|