12 stdenv.mkDerivation rec {
13 pname = "ocaml${ocaml.version}-jsonm";
17 url = "https://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
18 hash = "sha256-6ikjn+tAUyAd8+Hm0nws4SOIKsRljhyL6plYvhGKe9Y=";
27 buildInputs = [ topkg ];
28 propagatedBuildInputs = [ uutf ];
32 inherit (topkg) buildPhase installPhase;
35 description = "OCaml non-blocking streaming codec to decode and encode the JSON data format";
36 homepage = "https://erratique.ch/software/jsonm";
37 license = lib.licenses.bsd3;
38 maintainers = with lib.maintainers; [ vbgl ];
39 mainProgram = "jsontrip";
40 inherit (ocaml.meta) platforms;