summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/yaml/yaml-sexp.nix
blob: e0cc9fac177d74cc1d72630e93a18b143070a9ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, fetchurl, 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";
  };
}