nixpkgs/pkgs/development/ocaml-modules/jsonm/default.nix

28 lines
812 B
Nix
Raw Normal View History

2017-12-13 23:36:29 -08:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uutf }:
2017-07-01 02:23:10 -07:00
let version = "1.0.1"; in
stdenv.mkDerivation {
2016-12-04 02:15:09 -08:00
name = "ocaml${ocaml.version}-jsonm-${version}";
src = fetchurl {
url = "http://erratique.ch/software/jsonm/releases/jsonm-${version}.tbz";
2017-07-01 02:23:10 -07:00
sha256 = "1176dcmxb11fnw49b7yysvkjh0kpzx4s48lmdn5psq9vshp5c29w";
};
2017-12-13 23:36:29 -08:00
buildInputs = [ ocaml findlib ocamlbuild topkg ];
propagatedBuildInputs = [ uutf ];
unpackCmd = "tar xjf $src";
2016-12-04 02:15:09 -08:00
inherit (topkg) buildPhase installPhase;
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 09:05:19 -07:00
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
platforms = ocaml.meta.platforms or [];
};
}