about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-11-19 18:51:52 +0100
committersternenseemann <sternenseemann@systemli.org>2023-12-04 19:43:07 +0100
commit274c1f0970e715ba4793fcd68b666af03a79a83e (patch)
tree99a33514ebe8988dd79c29b239622423ebc44d14 /pkgs/development/compilers
parentbd151aad5bceba29d3c78f4df848ef9fabe55939 (diff)
downloadnixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar.gz
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar.bz2
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar.lz
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar.xz
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.tar.zst
nixlib-274c1f0970e715ba4793fcd68b666af03a79a83e.zip
haskell.compiler.ghc865Binary: don't pass llvmPackages_6
We want to remove llvmPackages_6, but it is the only version GHC 8.6.5
supports. Luckily, we actually don't need LLVM in any case, since all
X86 architectures have native codegen for Darwin and Linux, as well as
POWER for Linux. Consequently, we can just pass `null` and add an extra
assert to make this more transparent to future tinkerers.
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ghc/8.6.5-binary.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ghc/8.6.5-binary.nix b/pkgs/development/compilers/ghc/8.6.5-binary.nix
index 7de4bd035448..58e61604cd61 100644
--- a/pkgs/development/compilers/ghc/8.6.5-binary.nix
+++ b/pkgs/development/compilers/ghc/8.6.5-binary.nix
@@ -40,7 +40,7 @@ let
     targetPackages.stdenv.cc.bintools
     coreutils # for cat
   ]
-  ++ lib.optionals useLLVM [
+  ++ lib.optionals (assert useLLVM -> !(llvmPackages == null); useLLVM) [
     (lib.getBin llvmPackages.llvm)
   ]
   # On darwin, we need unwrapped bintools as well (for otool)