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

stdenv.mkDerivation {
  name = "ocamlmod-0.0.7";

  src = fetchurl {
    url = http://forge.ocamlcore.org/frs/download.php/1350/ocamlmod-0.0.7.tar.gz;
    sha256 = "11kg7wh0gy492ma5c6bcjh6frv1a9lh9f26hiys2i0d1ky8s0ad3";
  };

  buildInputs = [ocaml findlib ounit];

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

  meta = {
    homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod;
    description = "Generate OCaml modules from source files";
    platforms = ocaml.meta.platforms;
    maintainers = with stdenv.lib.maintainers; [
      z77z
    ];
  };
}