2024-07-16 03:40:28 +02:00
|
|
|
{
|
|
|
|
buildDunePackage,
|
|
|
|
json-data-encoding,
|
|
|
|
ocplib-endian,
|
|
|
|
crowbar,
|
|
|
|
alcotest,
|
|
|
|
}:
|
2021-07-12 11:29:43 +02:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "json-data-encoding-bson";
|
|
|
|
|
2022-03-24 15:11:16 +01:00
|
|
|
inherit (json-data-encoding) version src doCheck;
|
2021-07-12 11:29:43 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
json-data-encoding
|
|
|
|
ocplib-endian
|
|
|
|
];
|
|
|
|
|
2022-03-01 16:42:22 +01:00
|
|
|
checkInputs = [
|
2021-07-12 11:29:43 +02:00
|
|
|
crowbar
|
2021-09-21 08:47:59 +00:00
|
|
|
alcotest
|
2021-07-12 11:29:43 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = json-data-encoding.meta // {
|
|
|
|
description = "Type-safe encoding to and decoding from JSON (bson support)";
|
|
|
|
};
|
|
|
|
}
|