mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #6309 from joelteon/ghc-head-git
Build GHC HEAD from git checkout
This commit is contained in:
commit
6b16a7fbd7
2 changed files with 15 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
|
{ stdenv, fetchgit, ghc, perl, gmp, ncurses, autoconf, automake, happy, alex }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -15,13 +15,21 @@ in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "7.11.20150118";
|
version = "7.11.20150118";
|
||||||
name = "ghc-${version}";
|
name = "ghc-${version}";
|
||||||
|
rev = "6ff3db92140e3ac8cbda50d1a4aab976350ac8c4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "http://deb.haskell.org/dailies/2015-01-18/ghc_${version}.orig.tar.bz2";
|
url = "git://git.haskell.org/ghc.git";
|
||||||
sha256 = "1zy960q2faq03camq2n4834bd748vkc15h83bapswc68dqncqj20";
|
inherit rev;
|
||||||
|
sha256 = "1a1r3nw7x5rd8563770zcg1phm55vi3sxs2zwr91ik026n8jjba6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ghc perl ];
|
postUnpack = ''
|
||||||
|
pushd ghc-${builtins.substring 0 7 rev}
|
||||||
|
./boot
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ ghc perl autoconf automake happy alex ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
echo >mk/build.mk "${buildMK}"
|
echo >mk/build.mk "${buildMK}"
|
||||||
|
@ -39,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# required, because otherwise all symbols from HSffi.o are stripped, and
|
# required, because otherwise all symbols from HSffi.o are stripped, and
|
||||||
# that in turn causes GHCi to abort
|
# that in turn causes GHCi to abort
|
||||||
stripDebugFlags = [ "-S" "--keep-file-symbols" ];
|
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://haskell.org/ghc";
|
homepage = "http://haskell.org/ghc";
|
||||||
|
|
|
@ -18,7 +18,7 @@ rec {
|
||||||
ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
|
ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
|
||||||
ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix { ghc = compiler.ghc742Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
|
ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix { ghc = compiler.ghc742Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
|
||||||
ghc7101 = callPackage ../development/compilers/ghc/7.10.1.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
|
ghc7101 = callPackage ../development/compilers/ghc/7.10.1.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
|
||||||
ghcHEAD = callPackage ../development/compilers/ghc/head.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix { inherit (packages.ghc784) ghc happy alex; gmp = pkgs.gmp.override { withStatic = true; }; };
|
||||||
ghc = compiler.ghc784;
|
ghc = compiler.ghc784;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue