blob: a25c6a37c7f8690051976fdfe2c74103a3fe8c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
buildDunePackage,
yaml,
ppx_sexp_conv,
sexplib,
junit_alcotest,
}:
buildDunePackage {
pname = "yaml-sexp";
inherit (yaml) version src;
propagatedBuildInputs = [
yaml
ppx_sexp_conv
sexplib
];
doCheck = true;
checkInputs = [ junit_alcotest ];
meta = yaml.meta // {
description = "ocaml-yaml with sexp support";
};
}
|