mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
18 lines
343 B
Nix
18 lines
343 B
Nix
{ buildDunePackage, yaml, 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";
|
|
};
|
|
}
|