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
stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
yaml
/
yaml-sexp.nix
blob
ae3d3f30257591e35c3eed9ae7c7f5c55635bdd1
1
{
2
buildDunePackage,
3
yaml,
4
ppx_sexp_conv,
5
sexplib,
6
junit_alcotest,
7
}:
8
9
buildDunePackage rec {
10
pname = "yaml-sexp";
11
12
inherit (yaml) version src;
13
14
propagatedBuildInputs = [
15
yaml
16
ppx_sexp_conv
17
sexplib
18
];
19
20
doCheck = true;
21
checkInputs = [ junit_alcotest ];
22
23
meta = yaml.meta // {
24
description = "ocaml-yaml with sexp support";
25
};
26
}