lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 21 lines 442 B view raw
1{ lib, buildDunePackage, json-data-encoding, ocplib-endian, crowbar, alcotest }: 2 3buildDunePackage { 4 pname = "json-data-encoding-bson"; 5 6 inherit (json-data-encoding) version src doCheck; 7 8 propagatedBuildInputs = [ 9 json-data-encoding 10 ocplib-endian 11 ]; 12 13 checkInputs = [ 14 crowbar 15 alcotest 16 ]; 17 18 meta = json-data-encoding.meta // { 19 description = "Type-safe encoding to and decoding from JSON (bson support)"; 20 }; 21}