2016-12-04 10:15:09 +00:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, opam, uutf }:
|
2015-01-20 15:16:56 +00:00
|
|
|
|
2016-12-04 10:15:09 +00:00
|
|
|
let version = "1.0.0"; in
|
2015-01-20 15:16:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-12-04 10:15:09 +00:00
|
|
|
name = "ocaml${ocaml.version}-jsonm-${version}";
|
2015-01-20 15:16:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
|
2016-12-04 10:15:09 +00:00
|
|
|
sha256 = "1v3ln6d965lplj28snjdqdqablpp1kx8bw2cfx0m6i157mqyln62";
|
2015-01-20 15:16:56 +00:00
|
|
|
};
|
|
|
|
|
2016-12-04 10:15:09 +00:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg opam ];
|
2015-01-20 15:16:56 +00:00
|
|
|
propagatedBuildInputs = [ uutf ];
|
|
|
|
|
|
|
|
unpackCmd = "tar xjf $src";
|
|
|
|
|
|
|
|
createFindlibDestdir = 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";
|
|
|
|
homepage = http://erratique.ch/software/jsonm;
|
2015-04-21 17:05:19 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2015-01-20 15:16:56 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-01-20 15:16:56 +00:00
|
|
|
};
|
|
|
|
}
|