about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ezjsonm/default.nix
blob: f54d14e4fe9deeec2add86ffa15175f8900427b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchzip, ocaml, findlib, jsonm, hex, sexplib, lwt }:

let version = "0.3.1"; in

stdenv.mkDerivation {
  name = "ocaml-ezjsonm-${version}";

  src = fetchzip {
    url = "https://github.com/mirage/ezjsonm/archive/${version}.tar.gz";
    sha256 = "0cz1v75j8j5y4vfcgylp5zaxiy7541qg6pm4wrgmvy6fmh82654f";
  };

  buildInputs = [ ocaml findlib ];
  propagatedBuildInputs = [ jsonm hex sexplib lwt ];
  createFindlibDestdir = true;

  configureFlags = "--enable-lwt";

  meta = {
    description = "An easy interface on top of the Jsonm library";
    homepage = https://github.com/mirage/ezjsonm;
    license = stdenv.lib.licenses.isc;
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
    platforms = ocaml.meta.platforms;
  };
}