about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocplib-json-typed/bson.nix
blob: 350c31a3819d4af3bb14b8d0efe64922e273b51b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, ocplib-json-typed, ocplib-endian }:

buildDunePackage {
  pname = "ocplib-json-typed-bson";
  inherit (ocplib-json-typed) version 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;
  };
}