summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/oasis/0.4.6.nix
blob: b5e977d623b3eacaa74d69eb7f5b792e2a69a6a2 (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
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4
, ocaml_data_notation, type_conv, ocamlmod, ocamlify, ounit, expect
}:

stdenv.mkDerivation {
  name = "ocaml-oasis-0.4.6";

  src = fetchurl {
    url = http://forge.ocamlcore.org/frs/download.php/1604/oasis-0.4.6.tar.gz;
    sha256 = "1yxv3ckkf87nz0cyll0yy1kd295j5pv3jqwkfrr1y65wkz5vw90k";
  };

  createFindlibDestdir = true;

  buildInputs =
    [
      ocaml findlib ocamlbuild type_conv ocamlmod ocamlify ounit camlp4
    ];

  propagatedBuildInputs = [ ocaml_data_notation ];

  configurePhase = "ocaml setup.ml -configure --prefix $out";
  buildPhase     = "ocaml setup.ml -build";
  installPhase   = "ocaml setup.ml -install";

  meta = with stdenv.lib; {
    homepage = http://oasis.forge.ocamlcore.org/;
    description = "Configure, build and install system for OCaml projects";
    license = licenses.lgpl21;
    platforms = ocaml.meta.platforms or [];
    maintainers = with maintainers; [
      vbgl z77z
    ];
  };
}