commit
c4784335d0
45
pkgs/development/compilers/ghc/7.8.1.nix
Normal file
45
pkgs/development/compilers/ghc/7.8.1.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "7.8.0.20140228";
|
||||||
|
name = "ghc-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.haskell.org/ghc/dist/7.8.1-rc2/${name}-src.tar.bz2";
|
||||||
|
sha256 = "09xlgz1xg0182wjy62h3j0xvnhllhjlyvj30vc3him98parnr76w";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ghc perl gmp ncurses ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
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"
|
||||||
|
DYNAMIC_BY_DEFAULT = NO
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
echo "${buildMK}" > mk/build.mk
|
||||||
|
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
|
||||||
|
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
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
|
||||||
|
stdenv.lib.maintainers.simons
|
||||||
|
];
|
||||||
|
inherit (ghc.meta) license platforms;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2729,6 +2729,7 @@ let
|
|||||||
haskellPackages_ghc763_profiling = recurseIntoAttrs (haskell.packages_ghc763.profiling);
|
haskellPackages_ghc763_profiling = recurseIntoAttrs (haskell.packages_ghc763.profiling);
|
||||||
haskellPackages_ghc763 = recurseIntoAttrs (haskell.packages_ghc763.highPrio);
|
haskellPackages_ghc763 = recurseIntoAttrs (haskell.packages_ghc763.highPrio);
|
||||||
# Reasonably current HEAD snapshot.
|
# Reasonably current HEAD snapshot.
|
||||||
|
haskellPackages_ghc781 = haskell.packages_ghc781;
|
||||||
haskellPackages_ghcHEAD = haskell.packages_ghcHEAD;
|
haskellPackages_ghcHEAD = haskell.packages_ghcHEAD;
|
||||||
|
|
||||||
haxe = callPackage ../development/compilers/haxe { };
|
haxe = callPackage ../development/compilers/haxe { };
|
||||||
|
@ -23,6 +23,15 @@
|
|||||||
cabalInstall = self.cabalInstall_1_18_0_3.override { Cabal = null; };
|
cabalInstall = self.cabalInstall_1_18_0_3.override { Cabal = null; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ghc781Prefs =
|
||||||
|
self : self.haskellPlatformArgs_future self // {
|
||||||
|
haskellPlatform = null;
|
||||||
|
extensibleExceptions = self.extensibleExceptions_0_1_1_4;
|
||||||
|
cabalInstall_1_18_0_2 = self.cabalInstall_1_18_0_2.override { Cabal = null; };
|
||||||
|
cabalInstall = self.cabalInstall_1_18_0_2.override { Cabal = null; };
|
||||||
|
binary_0_7_1_0 = null;
|
||||||
|
};
|
||||||
|
|
||||||
ghc763Prefs =
|
ghc763Prefs =
|
||||||
self : self.haskellPlatformArgs_2013_2_0_0 self // {
|
self : self.haskellPlatformArgs_2013_2_0_0 self // {
|
||||||
haskellPlatform = self.haskellPlatform_2013_2_0_0;
|
haskellPlatform = self.haskellPlatform_2013_2_0_0;
|
||||||
@ -395,6 +404,12 @@
|
|||||||
prefFun = ghc763Prefs;
|
prefFun = ghc763Prefs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
packages_ghc781 =
|
||||||
|
packages { ghcPath = ../development/compilers/ghc/7.8.1.nix;
|
||||||
|
ghcBinary = ghc742Binary;
|
||||||
|
prefFun = ghc781Prefs;
|
||||||
|
};
|
||||||
|
|
||||||
# Reasonably current HEAD snapshot. Should *always* be lowPrio.
|
# Reasonably current HEAD snapshot. Should *always* be lowPrio.
|
||||||
packages_ghcHEAD =
|
packages_ghcHEAD =
|
||||||
packages { ghcPath = ../development/compilers/ghc/head.nix;
|
packages { ghcPath = ../development/compilers/ghc/head.nix;
|
||||||
|
Loading…
Reference in New Issue
Block a user