about summary refs log tree commit diff
path: root/pkgs/development/compilers/ocaml
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2008-06-04 14:03:20 +0000
committerAndres Löh <mail@andres-loeh.de>2008-06-04 14:03:20 +0000
commitd025d671182c31a04abceb98bded10f9e0864651 (patch)
treeb7d1e822c3e46ba4d830ac1d523ebcb257259376 /pkgs/development/compilers/ocaml
parent41892afe9f1ae185ddd6ec8938ce98601302f392 (diff)
* layout changes
svn path=/nixpkgs/trunk/; revision=11980
Diffstat (limited to 'pkgs/development/compilers/ocaml')
-rw-r--r--pkgs/development/compilers/ocaml/3.10.0.nix47
1 files changed, 26 insertions, 21 deletions
diff --git a/pkgs/development/compilers/ocaml/3.10.0.nix b/pkgs/development/compilers/ocaml/3.10.0.nix
index a26175755b5b7..8a8ddd7ee9756 100644
--- a/pkgs/development/compilers/ocaml/3.10.0.nix
+++ b/pkgs/development/compilers/ocaml/3.10.0.nix
@@ -1,23 +1,28 @@
 args: with args;
-stdenv.mkDerivation rec {
-	name = "ocaml-3.10.0";
-	src = fetchurl {
-		url = "http://caml.inria.fr/pub/distrib/ocaml-3.10/${name}.tar.bz2";
-		sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d";
-	};
-	prefixKey = "-prefix ";
-	configureFlags = ["-no-tk" "-x11lib" x11];
-	buildFlags = "world bootstrap world.opt";
-	buildInputs = [x11 ncurses];
-	installTargets = "install installopt"; 
-	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";
-	};
-}
+stdenv.mkDerivation (rec {
+  
+  name = "ocaml-3.10.0";
+  
+  src = fetchurl {
+    url = "http://caml.inria.fr/pub/distrib/ocaml-3.10/${name}.tar.bz2";
+    sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d";
+  };
+
+  prefixKey = "-prefix ";
+  configureFlags = ["-no-tk" "-x11lib" x11];
+  buildFlags = "world bootstrap world.opt";
+  buildInputs = [x11 ncurses];
+  installTargets = "install installopt"; 
+  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";
+  };
+
+})