repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
evcc: 0.131.4 -> 0.131.5
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
yaml
/
yaml-sexp.nix
blob
44e111715db568139f59d77b98162c6fe9ebaa94
1
{ buildDunePackage, yaml, ppx_sexp_conv, sexplib
2
, junit_alcotest
3
}:
4
5
buildDunePackage rec {
6
pname = "yaml-sexp";
7
8
inherit (yaml) version src;
9
10
propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ];
11
12
doCheck = true;
13
checkInputs = [ junit_alcotest ];
14
15
meta = yaml.meta // {
16
description = "ocaml-yaml with sexp support";
17
};
18
}