fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
18 lines
367 B
Nix
18 lines
367 B
Nix
{ lib, buildDunePackage, yaml, dune-configurator, ppx_sexp_conv, sexplib
|
|
, junit_alcotest
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
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";
|
|
};
|
|
}
|