* Disable the GHC setup hook. It's kind of annoying to have to
rebuild all of GHC every time the setup hook changes. Thus its better to factor it out. (After all, the setup hook doesn't have to be provided by the GHC package proper; it can also be provided by some helper package.) svn path=/nixpkgs/trunk/; revision=15094
This commit is contained in:
parent
405f746280
commit
d182df5526
@ -14,8 +14,6 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
buildInputs = [ghc readline perl58 m4 gmp];
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "The Glasgow Haskell Compiler";
|
||||
};
|
||||
|
@ -16,11 +16,6 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
buildInputs = [ghc readline perl m4 gmp];
|
||||
|
||||
# The setup hook is executed by other packages building with ghc.
|
||||
# It then looks for package configurations that are available and
|
||||
# build a package database on the fly.
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "The Glasgow Haskell Compiler";
|
||||
};
|
||||
|
@ -15,11 +15,6 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
buildInputs = [ghc readline perl m4 gmp haddock];
|
||||
|
||||
# The setup hook is executed by other packages building with ghc.
|
||||
# It then looks for package configurations that are available and
|
||||
# build a package database on the fly.
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "The Glasgow Haskell Compiler";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user