Author: andres
Date: Mon Mar 28 21:33:21 2011
New Revision: 26588
URL: https://svn.nixos.org/websvn/nix/?rev=26588&sc=1

Log:
Adding ghc-7.0.3.

Added:
   nixpkgs/trunk/pkgs/development/compilers/ghc/7.0.3.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/development/compilers/ghc/7.0.3.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/compilers/ghc/7.0.3.nix      Mon Mar 28 
21:33:21 2011        (r26588)
@@ -0,0 +1,43 @@
+{stdenv, fetchurl, ghc, perl, gmp, ncurses, darwinInstallNameToolUtility}:
+
+stdenv.mkDerivation rec {
+  version = "7.0.3";
+  name = "ghc-${version}";
+
+  src = fetchurl {
+    url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";;
+    sha256 = "1nfc2c6bdcdfg3f3d9q5v109jrrwhz6by3qa4qi7k0xbip16jq8m";
+  };
+
+  buildInputs = [ghc perl gmp ncurses] ++
+    (if stdenv.isDarwin then [darwinInstallNameToolUtility] else []);
+
+  buildMK = ''
+    libraries/integer-gmp_CONFIGURE_OPTS += 
--configure-option=--with-gmp-libraries="${gmp}/lib"
+    libraries/integer-gmp_CONFIGURE_OPTS += 
--configure-option=--with-gmp-includes="${gmp}/include"
+  '';
+
+  preConfigure = ''
+    echo "${buildMK}" > mk/build.mk
+    sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+  '';
+
+  configureFlags=[
+    "--with-gcc=${stdenv.gcc}/bin/gcc"
+  ];
+
+  # required, because otherwise all symbols from HSffi.o are stripped, and
+  # that in turn causes GHCi to abort
+  stripDebugFlags=["-S" "--keep-file-symbols"];
+
+  meta = {
+    homepage = "http://haskell.org/ghc";;
+    description = "The Glasgow Haskell Compiler";
+    maintainers = [
+      stdenv.lib.maintainers.marcweber
+      stdenv.lib.maintainers.andres
+    ];
+    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+  };
+
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Mon Mar 28 20:26:29 
2011        (r26587)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Mon Mar 28 21:33:21 
2011        (r26588)
@@ -1947,6 +1947,11 @@
   haskellPackages_ghc702 =
     haskellPackagesFun ../development/compilers/ghc/7.0.2.nix  (x : 
x.ghc702Prefs) false (x : x);
 
+  # Can become default after a short testing phase. There's also a minor 
platform
+  # release planned based on 703. Please keep at lowPrio until then.
+  haskellPackages_ghc703 =
+    haskellPackagesFun ../development/compilers/ghc/7.0.3.nix  (x : 
x.ghc703Prefs) false lowPrio;
+
   haskellPackages_ghcHEAD =
     haskellPackagesFun ../development/compilers/ghc/head.nix   (x : 
x.ghcHEADPrefs) false lowPrio;
 

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Mon Mar 28 20:26:29 
2011        (r26587)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Mon Mar 28 21:33:21 
2011        (r26588)
@@ -86,6 +86,7 @@
   ghc6123Prefs = super : super // super.haskellPlatformDefaults_2010_2_0_0 
super;
   ghc701Prefs  = super : super // super.haskellPlatformDefaults_2011_2_0_0 
super; # link
   ghc702Prefs  = super : super // super.haskellPlatformDefaults_2011_2_0_0 
super;
+  ghc703Prefs  = super : super // super.haskellPlatformDefaults_2011_2_0_0 
super; # link
   ghcHEADPrefs = super : super // super.haskellPlatformDefaults_2011_2_0_0 
super; # link
 
   # GHC and its wrapper
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to