2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, ncurses, x11 }:
|
2009-06-26 18:53:02 +02:00
|
|
|
|
2009-11-08 01:32:12 +01:00
|
|
|
let
|
2010-10-03 11:18:31 +02:00
|
|
|
useX11 = stdenv.isi686 || stdenv.isx86_64;
|
|
|
|
useNativeCompilers = stdenv.isi686 || stdenv.isx86_64 || stdenv.isMips;
|
2009-11-08 01:32:12 +01:00
|
|
|
inherit (stdenv.lib) optionals optionalString;
|
|
|
|
in
|
2010-07-28 13:55:54 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2009-06-26 18:53:02 +02:00
|
|
|
|
|
|
|
name = "ocaml-3.11.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://caml.inria.fr/pub/distrib/ocaml-3.11/${name}.tar.bz2";
|
|
|
|
sha256 = "8c36a28106d4b683a15c547dfe4cb757a53fa9247579d1cc25bd06a22cc62e50";
|
|
|
|
};
|
|
|
|
|
2010-10-03 11:18:31 +02:00
|
|
|
# Needed to avoid a SIGBUS on the final executable on mips
|
|
|
|
NIX_CFLAGS_COMPILE = if stdenv.isMips then "-fPIC" else "";
|
|
|
|
|
2011-01-01 18:26:07 +01:00
|
|
|
patches = optionals stdenv.isDarwin [ ./gnused-on-osx-fix.patch ];
|
|
|
|
|
2009-06-26 18:53:02 +02:00
|
|
|
prefixKey = "-prefix ";
|
2009-11-08 01:32:12 +01:00
|
|
|
configureFlags = ["-no-tk"] ++ optionals useX11 [ "-x11lib" x11 ];
|
|
|
|
buildFlags = "world" + optionalString useNativeCompilers " bootstrap world.opt";
|
|
|
|
buildInputs = [ncurses] ++ optionals useX11 [ x11 ];
|
|
|
|
installTargets = "install" + optionalString useNativeCompilers " installopt";
|
2010-10-03 11:18:31 +02:00
|
|
|
prePatch = ''
|
2009-06-26 18:53:02 +02:00
|
|
|
CAT=$(type -tp cat)
|
|
|
|
sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang
|
2010-10-25 23:13:05 +02:00
|
|
|
patch -p0 < ${./mips64.patch}
|
2009-06-26 18:53:02 +02:00
|
|
|
'';
|
2010-09-03 15:48:35 +02:00
|
|
|
postBuild = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/include
|
2010-09-03 15:48:35 +02:00
|
|
|
ln -sv $out/lib/ocaml/caml $out/include/caml
|
|
|
|
'';
|
2009-06-26 18:53:02 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://caml.inria.fr/ocaml;
|
2009-12-10 22:39:02 +01:00
|
|
|
licenses = [ "QPL" /* compiler */ "LGPLv2" /* library */ ];
|
2009-12-10 22:27:19 +01:00
|
|
|
description = "Objective Caml, the most popular variant of the Caml language";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' Objective Caml is the most popular variant of the Caml language.
|
|
|
|
From a language standpoint, it extends the core Caml language with a
|
|
|
|
fully-fledged object-oriented layer, as well as a powerful module
|
|
|
|
system, all connected by a sound, polymorphic type system featuring
|
|
|
|
type inference.
|
|
|
|
|
|
|
|
The Objective Caml system is an industrial-strength implementation
|
|
|
|
of this language, featuring a high-performance native-code compiler
|
|
|
|
(ocamlopt) for 9 processor architectures (IA32, PowerPC, AMD64,
|
|
|
|
Alpha, Sparc, Mips, IA64, HPPA, StrongArm), as well as a bytecode
|
|
|
|
compiler (ocamlc) and an interactive read-eval-print loop (ocaml)
|
|
|
|
for quick development and portability. The Objective Caml
|
|
|
|
distribution includes a comprehensive standard library, a replay
|
|
|
|
debugger (ocamldebug), lexer (ocamllex) and parser (ocamlyacc)
|
|
|
|
generators, a pre-processor pretty-printer (camlp4) and a
|
|
|
|
documentation generator (ocamldoc).
|
|
|
|
'';
|
2010-12-09 16:44:05 +01:00
|
|
|
|
2010-12-11 15:29:37 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2010-12-09 16:44:05 +01:00
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
2009-06-26 18:53:02 +02:00
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
}
|