a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
21 lines
448 B
Nix
21 lines
448 B
Nix
{ lib, buildDunePackage, json-data-encoding, ocplib-endian, crowbar, alcotest }:
|
|
|
|
buildDunePackage {
|
|
pname = "json-data-encoding-bson";
|
|
|
|
inherit (json-data-encoding) version src doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
json-data-encoding
|
|
ocplib-endian
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
crowbar
|
|
alcotest
|
|
];
|
|
|
|
meta = json-data-encoding.meta // {
|
|
description = "Type-safe encoding to and decoding from JSON (bson support)";
|
|
};
|
|
}
|