ab8489cc40
* ocamlPackages.yaml: 2.1.0 -> 3.0.0 Also added the checkInputs. * Add ocamlPackage.yaml-sexp 3.0.0 The part of yaml that requires sexplib is moved to a second package.
14 lines
314 B
Nix
14 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";
|
|
};
|
|
}
|