a7848c7476
GitOrigin-RevId: 34ad3ffe08adfca17fcb4e4a47bb5f3b113687be
13 lines
314 B
Nix
13 lines
314 B
Nix
{ lib, fetchurl, buildDunePackage, yaml, dune-configurator, ppx_sexp_conv, sexplib }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "yaml-sexp";
|
|
|
|
inherit (yaml) version src useDune2;
|
|
|
|
propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ];
|
|
|
|
meta = yaml.meta // {
|
|
description = "ocaml-yaml with sexp support";
|
|
};
|
|
}
|