From bbb13daacc156a67eb57d26fa2a78ef94fbac7f2 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 1 Jul 2025 11:24:19 +0200 Subject: [PATCH] haskellPackages.JuicyPixels-jpeg-turbo: also disable tests This package is affected by the same problem as jpeg-turbo, missing test files in the sdist. --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fc0cc8329840..1c07abc0c99f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -449,6 +449,7 @@ with haskellLib; # Missing test file https://gitlab.com/dpwiz/hs-jpeg-turbo/-/issues/1 jpeg-turbo = dontCheck super.jpeg-turbo; + JuicyPixels-jpeg-turbo = dontCheck super.JuicyPixels-jpeg-turbo; # Fixes compilation for basement on i686 for GHC >= 9.4 # https://github.com/haskell-foundation/foundation/pull/573