about 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>2018-12-09 17:46:38 +0100
committerPeter Simons <simons@cryp.to>2018-12-14 19:44:19 +0100
commitea45e771a164e5e903b07ff4f6808285a9187e45 (patch)
tree0b4097b9522c6cf7c305feec4d9055d53f84533a /pkgs/development/haskell-modules/configuration-common.nix
parent89ed58dbeaeb7fe351a58e420718bf03daab5fff (diff)
downloadnixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar.gz
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar.bz2
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar.lz
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar.xz
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.tar.zst
nixlib-ea45e771a164e5e903b07ff4f6808285a9187e45.zip
haskell-cryptonite: disable test suite to avoid transient errors
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index b7b2e5f2b215..ffbe5310505f 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -683,7 +683,8 @@ self: super: {
   # Fix an aarch64 issue with cryptonite-0.25:
   # https://github.com/haskell-crypto/cryptonite/issues/234
   # This has been committed upstream, but there is, as of yet, no new release.
-  cryptonite = appendPatch super.cryptonite (pkgs.fetchpatch {
+  # Also, disable the test suite to avoid https://github.com/haskell-crypto/cryptonite/issues/260.
+  cryptonite = appendPatch (dontCheck super.cryptonite) (pkgs.fetchpatch {
     url = https://github.com/haskell-crypto/cryptonite/commit/4622e5fc8ece82f4cf31358e31cd02cf020e558e.patch;
     sha256 = "1m2d47ni4jbrpvxry50imj91qahr3r7zkqm157clrzlmw6gzpgnq";
   });