Adds ocaml-jsonm
Jsonm is an OCaml non-blocking streaming codec to decode and encode the JSON data format. Homepage: http://erratique.ch/software/jsonm
This commit is contained in:
parent
0484f9f4b6
commit
1df8208839
30
pkgs/development/ocaml-modules/jsonm/default.nix
Normal file
30
pkgs/development/ocaml-modules/jsonm/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, ocaml, findlib, uutf }:
|
||||||
|
|
||||||
|
let version = "0.9.1"; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "ocaml-jsonm-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
|
||||||
|
sha256 = "0wszqrmx8iqlwzvs76fjf4sqh15mv20yjrbyhkd348yq8nhdrm1z";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ];
|
||||||
|
propagatedBuildInputs = [ uutf ];
|
||||||
|
|
||||||
|
unpackCmd = "tar xjf $src";
|
||||||
|
|
||||||
|
configurePhase = "ocaml setup.ml -configure --prefix $prefix";
|
||||||
|
buildPhase = "ocaml setup.ml -build";
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
installPhase = "ocaml setup.ml -install";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "An OCaml non-blocking streaming codec to decode and encode the JSON data format";
|
||||||
|
homepage = http://erratique.ch/software/jsonm;
|
||||||
|
licenses = stdenv.lib.licenses.bsd3;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -3774,6 +3774,8 @@ let
|
|||||||
|
|
||||||
js_of_ocaml = callPackage ../development/tools/ocaml/js_of_ocaml { };
|
js_of_ocaml = callPackage ../development/tools/ocaml/js_of_ocaml { };
|
||||||
|
|
||||||
|
jsonm = callPackage ../development/ocaml-modules/jsonm { };
|
||||||
|
|
||||||
lablgl = callPackage ../development/ocaml-modules/lablgl { };
|
lablgl = callPackage ../development/ocaml-modules/lablgl { };
|
||||||
|
|
||||||
lablgtk_2_14 = callPackage ../development/ocaml-modules/lablgtk/2.14.0.nix {
|
lablgtk_2_14 = callPackage ../development/ocaml-modules/lablgtk/2.14.0.nix {
|
||||||
|
Loading…
Reference in New Issue
Block a user