summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cstruct/sexp.nix
blob: 742cb6522ebf227f485b14ec7be7b69d49e678e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, buildDunePackage, ocaml, alcotest, cstruct, sexplib }:

if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
else

buildDunePackage rec {
  pname = "cstruct-sexp";
  inherit (cstruct) version src useDune2 meta;

  doCheck = lib.versionAtLeast ocaml.version "4.03";
  checkInputs = lib.optional doCheck alcotest;

  propagatedBuildInputs = [ cstruct sexplib ];
}