summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-07-07 11:10:46 +0200
committerPeter Simons <simons@cryp.to>2017-07-13 08:44:17 +0200
commite59c532c2399a62391211275790c8a420bc07f05 (patch)
tree06e872201f75797a82fd2cefccbe32b20947ad4d /pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
parent4a599a688eefdea36948bc584791c1f3a8b91b77 (diff)
downloadnixlib-e59c532c2399a62391211275790c8a420bc07f05.tar
nixlib-e59c532c2399a62391211275790c8a420bc07f05.tar.gz
nixlib-e59c532c2399a62391211275790c8a420bc07f05.tar.bz2
nixlib-e59c532c2399a62391211275790c8a420bc07f05.tar.lz
nixlib-e59c532c2399a62391211275790c8a420bc07f05.tar.xz
nixlib-e59c532c2399a62391211275790c8a420bc07f05.tar.zst
nixlib-e59c532c2399a62391211275790c8a420bc07f05.zip
haskell-hspec-meta: use latest version when compiling with ghc-8.2.x
Fixes https://github.com/hspec/hspec/issues/323.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index e4d0e00a3266..2297fda171f1 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -60,9 +60,10 @@ self: super: {
   ghc-syb-utils = dontCheck super.ghc-syb-utils;
 
   # Older, LTS-8-based versions don't compile.
-  vector = super.vector_0_12_0_1;
+  hspec-meta = self.hspec-meta_2_4_4;
   primitive = self.primitive_0_6_2_0;
   syb = self.syb_0_7;
+  vector = super.vector_0_12_0_1;
 
   # Work around overly restrictive constraints on the version of 'base'.
   doctest = doJailbreak super.doctest;