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

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

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

	doCheck = true;
	buildInputs = [ alcotest ];

	propagatedBuildInputs = [ cstruct sexplib ];
}