about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-12-12 19:10:06 +0300
committerGitHub <noreply@github.com>2023-12-12 19:10:06 +0300
commitde5447cd6e96c2a7b4007c61179edf003082f82d (patch)
treedaed87143e7d291b0061a8e1db669a9b44c0068c /pkgs
parentaf99a04cd47966c7b16b22d44a189aa6f9a980d2 (diff)
parent4db77e5b1e619b8fddf8594f2d23140922f1a6fc (diff)
Merge pull request #273644 from K900/iwd-aarch64-oof
iwd: revert test that's broken on aarch64-linux
Diffstat (limited to 'pkgs')
-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 072254bc33366..84813723fb051 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";