tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fix GHC 8.4.x builds of hspec and test-framework
Peter Simons
8 years ago
6f93e0f7
866a1ed2
+5
1 changed file
expand all
collapse all
unified
split
pkgs
development
haskell-modules
configuration-ghc-8.4.x.nix
+5
pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
···
41
41
transformers = null;
42
42
unix = null;
43
43
xhtml = null;
44
44
+
45
45
+
# GHC 8.4.x needs newer versions than LTS-10.x offers by default.
46
46
+
hspec = dontCheck super.hspec_2_4_7; # test suite causes an infinite loop
47
47
+
test-framework = self.test-framework_0_8_2_0;
48
48
+
44
49
}