summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-04 11:36:24 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-04 11:36:24 +0200
commit083ac8e64cfc33be74909e572622117927c45d73 (patch)
tree7a652b8993012465f237d1dd0f8f8db522059230 /pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
parent6e9760124b11e5ea7ddd1607d873319910fa4baa (diff)
downloadnixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar.gz
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar.bz2
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar.lz
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar.xz
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.tar.zst
nixpkgs-083ac8e64cfc33be74909e572622117927c45d73.zip
haskellPackages.llvmPackages: dontRecurseIntoAttrs
They are not an exposed part of haskellPackages per se, so we shouldn't
list them in nix-env. Additionally this should prevent the failed lldb
build from cluttering our jobset output.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index bcce0bb897c..99b53b9f14f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -5,7 +5,7 @@ with haskellLib;
 self: super: {
 
   # This compiler version needs llvm 6.x.
-  llvmPackages = pkgs.llvmPackages_6;
+  llvmPackages = pkgs.lib.dontRecurseIntoAttrs pkgs.llvmPackages_6;
 
   # Disable GHC 8.6.x core libraries.
   array = null;