We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba00fea commit 0b08811Copy full SHA for 0b08811
pkgs/development/haskell-modules/configuration-common.nix
@@ -2562,4 +2562,9 @@ self: super: {
2562
# bytestring <0.11.0, optparse-applicative <0.13.0
2563
# https://github.com/kseo/sfnt2woff/issues/1
2564
sfnt2woff = doJailbreak super.sfnt2woff;
2565
+
2566
+ # c2hs fails to build intrinsics from gcc{12,13,14}
2567
+ hw-json-simd = lib.pipe super.hw-json-simd ([
2568
+ unmarkBroken
2569
+ ] ++ (lib.optional pkgs.stdenv.cc.isGNU (appendConfigureFlags [ "--with-gcc=${pkgs.gcc11}/bin/gcc" ])));
2570
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
0 commit comments