We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff23bd2 commit 6124c78Copy full SHA for 6124c78
1 file changed
pkgs/by-name/xs/xsimd/package.nix
@@ -2,6 +2,7 @@
2
lib,
3
stdenv,
4
fetchFromGitHub,
5
+ fetchpatch,
6
cmake,
7
doctest,
8
}:
@@ -25,6 +26,12 @@ stdenv.mkDerivation (finalAttrs: {
25
26
# package fails to notice it doesn't apply on their platform. We prefer not
27
# performing this test on linux platforms too although it should pass.
28
./disable-test_error_gamma.patch
29
+ # https://github.com/xtensor-stack/xsimd/issues/1232#issuecomment-3712243289
30
+ (fetchpatch {
31
+ url = "https://github.com/xtensor-stack/xsimd/commit/eb17eaaa30129a65042bedf245658014ffd94232.patch";
32
+ hash = "sha256-619uFD5FijtX5I7fyoaBl/8g2jbDVaSETDMUkyYIFSs=";
33
+ revert = true;
34
+ })
35
];
36
37
# strictDeps raises the chance that xsimd will be able to be cross compiled
0 commit comments