2021-01-11 13:49:15 +01:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, uutf }:
|
2015-01-20 16:16:56 +01:00
|
|
|
|
2022-02-06 23:35:27 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ocaml${ocaml.version}-jsonm";
|
|
|
|
version = "1.0.1";
|
2015-01-20 16:16:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
|
2017-07-01 11:23:10 +02:00
|
|
|
sha256 = "1176dcmxb11fnw49b7yysvkjh0kpzx4s48lmdn5psq9vshp5c29w";
|
2015-01-20 16:16:56 +01:00
|
|
|
};
|
|
|
|
|
2022-02-22 10:59:04 +01:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
buildInputs = [ topkg ];
|
2015-01-20 16:16:56 +01:00
|
|
|
propagatedBuildInputs = [ uutf ];
|
|
|
|
|
2022-02-22 10:59:04 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
2016-12-04 11:15:09 +01:00
|
|
|
inherit (topkg) buildPhase installPhase;
|
2015-01-20 16:16:56 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An OCaml non-blocking streaming codec to decode and encode the JSON data format";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://erratique.ch/software/jsonm";
|
2021-01-11 13:49:15 +01:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-01-20 16:16:56 +01:00
|
|
|
};
|
|
|
|
}
|