From 39ec62fa964e0ff2b55da0c379e7fc8c4976871a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 25 Mar 2015 19:46:42 +0100 Subject: [PATCH] haskell-configuration-common: don't import LLVM into the package set Instead, we'll make sure that packages find it in self.llvmPackages. --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d959e91cf2a8..abd1b9e2c9ac 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -4,9 +4,6 @@ with import ./lib.nix { inherit pkgs; }; self: super: { - # Use LLVM for particular GHC version. - inherit (self.llvmPackages) llvm; - # Some packages need a non-core version of Cabal. Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6; Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3;