haskellPackages.GlomeVec: don’t force the LLVM backend

Emily 64096636 9d1b1aa7

Changed files
+8
pkgs
development
haskell-modules
+8
pkgs/development/haskell-modules/configuration-nix.nix
···
'';
}) super.spaceprobe;
# Tries to run GUI in tests
leksah = dontCheck (
overrideCabal (drv: {
···
'';
}) super.spaceprobe;
+
# Forces the LLVM backend.
+
GlomeVec = overrideCabal (drv: {
+
postPatch = ''
+
substituteInPlace GlomeVec.cabal \
+
--replace-fail '-fllvm ' ""
+
'';
+
}) super.GlomeVec;
+
# Tries to run GUI in tests
leksah = dontCheck (
overrideCabal (drv: {