nixpkgs/pkgs/development/ocaml-modules/cstruct/sexp.nix

17 lines
377 B
Nix
Raw Normal View History

{ lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }:
if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
else
buildDunePackage rec {
pname = "cstruct-sexp";
2020-11-19 06:36:41 +00:00
inherit (cstruct) version src useDune2 meta;
doCheck = lib.versionAtLeast ocaml.version "4.03";
checkInputs = lib.optional doCheck alcotest;
propagatedBuildInputs = [ cstruct sexplib ];
}