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