mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
19 lines
343 B
Nix
19 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";
|
|
};
|
|
}
|