lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 13 lines 314 B view raw
1{ lib, fetchurl, buildDunePackage, yaml, dune-configurator, ppx_sexp_conv, sexplib }: 2 3buildDunePackage rec { 4 pname = "yaml-sexp"; 5 6 inherit (yaml) version src useDune2; 7 8 propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ]; 9 10 meta = yaml.meta // { 11 description = "ocaml-yaml with sexp support"; 12 }; 13}