summary refs log tree commit diff
path: root/pkgs/development/compilers/ocaml/cvs.nix
blob: 475a1d46d58935411f8c44b74d400011bb3539e3 (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
args: with args;

stdenv.mkDerivation (rec {
  
  name = "ocaml-cvs-2009-09-24";
  
  src = fetchcvs {
    cvsRoot = ":pserver:anoncvs@camlcvs.inria.fr:/caml";
    module = "ocaml";
    date = "2009-09-24";
    sha256 = "3909bffebc9ce36ca51711d7d95596cba94376ebb1975c6ed46b09c9892c3ef1";
  };

  prefixKey = "-prefix ";
  configureFlags = ["-no-tk"];
  buildFlags = "world" +
    (if (stdenv.system != "armv5tel-linux") then "bootstrap world.opt" else "");
  buildInputs = [ncurses];
  installTargets = "install" + (if (stdenv.system != "armv5tel-linux") then "installopt" else ""); 
  patchPhase = ''
    CAT=$(type -tp cat)
    sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang
  '';

  meta = {
    homepage = http://caml.inria.fr/ocaml;
    license = "QPL, LGPL2 (library part)";
    desctiption = "Most popular variant of the Caml language";
  };

})