summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocamlnat/default.nix
blob: d6281e00fdec35a2f73f3ee6d68ec1ed94cb4d72 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{stdenv, lib, fetchurl, ocaml, findlib, ounit}:

# https://github.com/bmeurer/ocamlnat/issues/3
assert lib.versionOlder ocaml.version "4";

stdenv.mkDerivation rec {
  pname = "ocamlnat";
  version = "0.1.1";

  src = fetchurl {
    url = "http://benediktmeurer.de/files/source/${pname}-${version}.tar.bz2";
    sha256 = "0dyvy0j6f47laxhnadvm71z1py9hz9zd49hamf6bij99cggb2ij1";
  };

  buildInputs = [ocaml findlib ounit];

  prefixKey = "--prefix ";

  doCheck = true;

  checkTarget = "test";

  createFindlibDestdir = true;

  meta = {
    description = "OCaml native toplevel";
    homepage = http://benediktmeurer.de/ocamlnat/;
    license = stdenv.lib.licenses.qpl;
    longDescription = ''
      The ocamlnat project provides a new native code OCaml toplevel
      ocamlnat, which is mostly compatible to the byte code toplevel ocaml,
      but up to 100 times faster. It is based on the optimizing native code
      compiler, the native runtime and an earlier prototype by Alain
      Frisch. It is build upon Just-In-Time techniques and currently
      supports Unix-like systems (i.e. Linux, BSD or macOS) running on
      x86 or x86-64 processors. Support for additional architectures and
      operating systems is planned, but not yet available.
    '';
    platforms = ocaml.meta.platforms or [];
    maintainers = [
      stdenv.lib.maintainers.maggesi
    ];
  };
}