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

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

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

  createFindlibDestdir = true;

  buildInputs =
    [
      ocaml findlib ocaml_data_notation ocaml_typeconv ocamlmod ocamlify ounit
    ];

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

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