about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-16 18:38:41 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-16 18:38:41 +0000
commitd182df55264c14860f52b496f9ba820240c18a2a (patch)
tree931e7ab20b06cc5ef6f948b0e8d7b575d6540b4b /pkgs/development/compilers/ghc
parent405f746280c791a9ddf7de40be8f983a5ec21356 (diff)
* 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
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/6.6.1.nix2
-rw-r--r--pkgs/development/compilers/ghc/6.8.2.nix5
-rw-r--r--pkgs/development/compilers/ghc/6.8.3.nix5
3 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/compilers/ghc/6.6.1.nix b/pkgs/development/compilers/ghc/6.6.1.nix
index 841306578eb69..b8be216c8dc62 100644
--- a/pkgs/development/compilers/ghc/6.6.1.nix
+++ b/pkgs/development/compilers/ghc/6.6.1.nix
@@ -14,8 +14,6 @@ stdenv.mkDerivation (rec {
 
   buildInputs = [ghc readline perl58 m4 gmp];
 
-  setupHook = ./setup-hook.sh;
-
   meta = {
     description = "The Glasgow Haskell Compiler";
   };
diff --git a/pkgs/development/compilers/ghc/6.8.2.nix b/pkgs/development/compilers/ghc/6.8.2.nix
index 9b78a979a9678..2bcd88dc2feeb 100644
--- a/pkgs/development/compilers/ghc/6.8.2.nix
+++ b/pkgs/development/compilers/ghc/6.8.2.nix
@@ -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";
   };
diff --git a/pkgs/development/compilers/ghc/6.8.3.nix b/pkgs/development/compilers/ghc/6.8.3.nix
index 98ddca5b36dcc..07369ddc6f5fa 100644
--- a/pkgs/development/compilers/ghc/6.8.3.nix
+++ b/pkgs/development/compilers/ghc/6.8.3.nix
@@ -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";
   };