nixpkgs/pkgs/development/ocaml-modules/ocplib-json-typed/bson.nix
2020-12-08 17:33:12 +01:00

14 lines
411 B
Nix

{ buildDunePackage, ocplib-json-typed, ocplib-endian }:
buildDunePackage {
pname = "ocplib-json-typed-bson";
inherit (ocplib-json-typed) version useDune2 src;
propagatedBuildInputs = [ ocplib-json-typed ocplib-endian ];
meta = {
description = "A Json_repr compatible implementation of the JSON compatible subset of BSON";
inherit (ocplib-json-typed.meta) homepage license maintainers;
};
}