410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
15 lines
327 B
Nix
15 lines
327 B
Nix
{ lib, fetchurl, buildDunePackage, yaml, dune-configurator, ppx_sexp_conv, sexplib }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "yaml-sexp";
|
|
|
|
inherit (yaml) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ];
|
|
|
|
meta = yaml.meta // {
|
|
description = "ocaml-yaml with sexp support";
|
|
};
|
|
}
|