From d182df55264c14860f52b496f9ba820240c18a2a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 16 Apr 2009 18:38:41 +0000 Subject: [PATCH] * 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 --- pkgs/development/compilers/ghc/6.6.1.nix | 2 -- pkgs/development/compilers/ghc/6.8.2.nix | 5 ----- pkgs/development/compilers/ghc/6.8.3.nix | 5 ----- 3 files changed, 12 deletions(-) diff --git a/pkgs/development/compilers/ghc/6.6.1.nix b/pkgs/development/compilers/ghc/6.6.1.nix index 841306578eb..b8be216c8dc 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 9b78a979a96..2bcd88dc2fe 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 98ddca5b36d..07369ddc6f5 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"; };