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