summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cstruct/default.nix
blob: 57a057e0eaa9d2140d530e40bdc8eeb3e838ae5b (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
27
28
29
{stdenv, writeText, fetchurl, ocaml, ocplib-endian, sexplib, findlib,
 async ? null, lwt ? null, camlp4}:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";

stdenv.mkDerivation {
  name = "ocaml-cstruct-1.6.0";

  src = fetchurl {
    url = https://github.com/mirage/ocaml-cstruct/archive/v1.6.0.tar.gz;
    sha256 = "0f90a1b7a03091cf22a3ccb11a0cce03b6500f064ad3766b5ed81418ac008ece";
  };

  configureFlags = stdenv.lib.strings.concatStringsSep " " ((if lwt != null then ["--enable-lwt"] else []) ++
                                          (if async != null then ["--enable-async"] else []));
  buildInputs = [ocaml findlib camlp4];
  propagatedBuildInputs = [ocplib-endian sexplib lwt async];

  createFindlibDestdir = true;
  dontStrip = true;

  meta = with stdenv.lib; {
    homepage = https://github.com/mirage/ocaml-cstruct;
    description = "Map OCaml arrays onto C-like structs";
    license = stdenv.lib.licenses.isc;
    maintainers = [ maintainers.vbgl maintainers.ericbmerritt ];
    platforms = ocaml.meta.platforms or [];
  };
}