about summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-12-12 00:20:09 +0300
committerK900 <me@0upti.me>2023-12-12 00:20:09 +0300
commit4db77e5b1e619b8fddf8594f2d23140922f1a6fc (patch)
tree6868a7989dac9db2aaf67d12150c770e5ecfd0f3 /pkgs/os-specific/linux
parente2b5c61471f78fc4a14265e90b0a3532e38e6589 (diff)
downloadnixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar.gz
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar.bz2
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar.lz
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar.xz
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.tar.zst
nixlib-4db77e5b1e619b8fddf8594f2d23140922f1a6fc.zip
iwd: revert test that's broken on aarch64-linux
And maybe others
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/iwd/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/iwd/default.nix b/pkgs/os-specific/linux/iwd/default.nix
index 072254bc3336..84813723fb05 100644
--- a/pkgs/os-specific/linux/iwd/default.nix
+++ b/pkgs/os-specific/linux/iwd/default.nix
@@ -1,5 +1,6 @@
 { lib, stdenv
 , fetchgit
+, fetchpatch
 , autoreconfHook
 , pkg-config
 , ell
@@ -21,6 +22,16 @@ stdenv.mkDerivation rec {
     hash = "sha256-zePFmcQRFjcH6KToTpBFMQzGY+Eq7jijfn0R/MMKGrw=";
   };
 
+  # Revert test that's broken on aarch64
+  # FIXME: fix this properly
+  patches = [
+    (fetchpatch {
+      url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=aabedeeb6c20c0c053f11ef53413d542442a8f62";
+      revert = true;
+      hash = "sha256-hO4KzdLzW6Tn/4NNJEQO2OvgjSPVl46cwwZfv53R84U=";
+    })
+  ];
+
   outputs = [ "out" "man" "doc" ]
     ++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";