haskellPackages.spaceprobe: don’t force the LLVM backend

Emily 9d1b1aa7 7caff6e6

Changed files
+8 -2
pkgs
development
haskell-modules
+8 -2
pkgs/development/haskell-modules/configuration-nix.nix
···
)
);
-
# Needs help finding LLVM.
-
spaceprobe = addBuildTool self.buildHaskellPackages.llvmPackages.llvm super.spaceprobe;
+
# Forces the LLVM backend; upstream signalled intent to remove this
+
# in 2017: <https://github.com/SeanRBurton/spaceprobe/issues/1>.
+
spaceprobe = overrideCabal (drv: {
+
postPatch = ''
+
substituteInPlace spaceprobe.cabal \
+
--replace-fail '-fllvm ' ""
+
'';
+
}) super.spaceprobe;
# Tries to run GUI in tests
leksah = dontCheck (