about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2024-01-11 14:14:56 +0100
committersternenseemann <sternenseemann@systemli.org>2024-01-11 14:14:56 +0100
commitf805a394487072d8ce1ed2d530c7519a895abd3a (patch)
tree6c6dadc646e091e2bd5ce442db75bcf6ea338e7d /pkgs/development/compilers/ghc
parentbd583b6169c956e1b4504fa840ae9b3fcc9ed938 (diff)
downloadnixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar.gz
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar.bz2
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar.lz
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar.xz
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.tar.zst
nixlib-f805a394487072d8ce1ed2d530c7519a895abd3a.zip
pkgsStatic.haskell.packages.ghc96.ghc: mark broken
Reference https://github.com/NixOS/nixpkgs/issues/208959
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/common-hadrian.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ghc/common-hadrian.nix b/pkgs/development/compilers/ghc/common-hadrian.nix
index f4d2a279a678..465db3a25296 100644
--- a/pkgs/development/compilers/ghc/common-hadrian.nix
+++ b/pkgs/development/compilers/ghc/common-hadrian.nix
@@ -528,6 +528,10 @@ stdenv.mkDerivation ({
     ] ++ lib.teams.haskell.members;
     timeout = 24 * 3600;
     inherit (ghc.meta) license platforms;
+    # https://github.com/NixOS/nixpkgs/issues/208959
+    broken =
+      (lib.versionAtLeast version "9.6" && lib.versionOlder version "9.8")
+      && stdenv.targetPlatform.isStatic;
   };
 
   dontStrip = targetPlatform.useAndroidPrebuilt || targetPlatform.isWasm;