summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-05-17 17:20:34 +0000
committerPeter Simons <simons@cryp.to>2019-05-18 12:58:02 +0200
commit2903cbf66b36aad41636dff287847454a07f8d22 (patch)
treec326f3368b0758a42152e3bb9ff9de121e6f9c92 /pkgs/development/haskell-modules
parent71fee27abb33ab6ada3165372c600f8728ea81bc (diff)
downloadnixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar.gz
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar.bz2
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar.lz
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar.xz
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.tar.zst
nixpkgs-2903cbf66b36aad41636dff287847454a07f8d22.zip
haskell-tasty-hedgehog: current versions need hedgehog 1.x or later
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ba1e461feab..548f9750d7e 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1236,8 +1236,9 @@ self: super: {
   pandoc = doDistribute super.pandoc_2_7_2;
   pandoc-citeproc = doDistribute super.pandoc-citeproc_0_16_2;
 
-  # https://github.com/qfpl/tasty-hedgehog/issues/24
-  tasty-hedgehog = dontCheck super.tasty-hedgehog;
+  # Current versions of tasty-hedgehog need hedgehog 1.x, which
+  # we don't have in LTS-13.x.
+  tasty-hedgehog = super.tasty-hedgehog.override { hedgehog = self.hedgehog_1_0; };
 
   # The latest release version is ancient. You really need this tool from git.
   haskell-ci = generateOptparseApplicativeCompletion "haskell-ci"