From 1ac9a4ea737a90a0c227f6cba7032ada6dcbf5dd Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Fri, 2 Apr 2021 17:27:26 +0200 Subject: [PATCH] haskellPackages.crypto-sodium: unbreak --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 18dbafe100d..7c99d92693b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1771,4 +1771,8 @@ self: super: { # https://github.com/centromere/blake2/issues/6 blake2 = dontCheck super.blake2; + # Test suite doesn't support base16-bytestring >= 1.0 + # https://github.com/serokell/haskell-crypto/issues/25 + crypto-sodium = dontCheck super.crypto-sodium; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super