* layout changes

svn path=/nixpkgs/trunk/; revision=11980
This commit is contained in:
Andres Löh 2008-06-04 14:03:20 +00:00
parent 41892afe9f
commit d025d67118

View File

@ -1,23 +1,28 @@
args: with args; args: with args;
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "ocaml-3.10.0"; name = "ocaml-3.10.0";
src = fetchurl { src = fetchurl {
url = "http://caml.inria.fr/pub/distrib/ocaml-3.10/${name}.tar.bz2"; url = "http://caml.inria.fr/pub/distrib/ocaml-3.10/${name}.tar.bz2";
sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d"; sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d";
}; };
prefixKey = "-prefix "; prefixKey = "-prefix ";
configureFlags = ["-no-tk" "-x11lib" x11]; configureFlags = ["-no-tk" "-x11lib" x11];
buildFlags = "world bootstrap world.opt"; buildFlags = "world bootstrap world.opt";
buildInputs = [x11 ncurses]; buildInputs = [x11 ncurses];
installTargets = "install installopt"; installTargets = "install installopt";
patchPhase = " patchPhase = ''
CAT=$(type -tp cat) CAT=$(type -tp cat)
sed -e \"s@/bin/cat@\${CAT}@\" -i config/auto-aux/sharpbang sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang
"; '';
meta = { meta = {
homepage = http://caml.inria.fr/ocaml; homepage = http://caml.inria.fr/ocaml;
license = "QPL, LGPL2 (library part)"; license = "QPL, LGPL2 (library part)";
desctiption = "Most popular variant of the Caml language"; desctiption = "Most popular variant of the Caml language";
}; };
}
})