summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2021-03-18 10:05:34 +0100
committerPeter Simons <simons@cryp.to>2021-03-18 10:05:34 +0100
commit0c38c5f6bba255cfc94f96285ab9269b0bc1183b (patch)
tree473370210cebfe6b6a00d64ce529c8b6d5033b7b /pkgs/development/haskell-modules/configuration-common.nix
parente6bff67db0b84c8e159d3098b45aa4459e28512b (diff)
downloadnixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar.gz
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar.bz2
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar.lz
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar.xz
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.tar.zst
nixpkgs-0c38c5f6bba255cfc94f96285ab9269b0bc1183b.zip
cryptohash-{sha1,md5}: disable test suites to fix the build
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a060ca3b006..eb6cdf10792 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -822,9 +822,12 @@ self: super: {
   # Jailbreak is necessary to break out of tasty < 1.x dependency.
   cryptohash-sha256 = markUnbroken (doJailbreak super.cryptohash-sha256);
 
+  # The test suite has all kinds of out-dated dependencies, so it feels easier
+  # to just disable it.
+  cryptohash-sha1 = dontCheck super.cryptohash-sha1;
+  cryptohash-md5 = dontCheck super.cryptohash-md5;
+
   # Needs tasty-quickcheck ==0.8.*, which we don't have.
-  cryptohash-sha1 = doJailbreak super.cryptohash-sha1;
-  cryptohash-md5 = doJailbreak super.cryptohash-md5;
   gitHUD = dontCheck super.gitHUD;
   githud = dontCheck super.githud;