about summary refs log tree commit diff
path: root/pkgs/tools/misc/wimboot
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-05-19 09:49:12 +0200
committerJanne Heß <janne@hess.ooo>2022-05-19 09:49:12 +0200
commit063298cdb1e691acb04a684a3e1d711a248ba3f4 (patch)
tree212c2ab64b717b95af347d5f571530dc56a96ce7 /pkgs/tools/misc/wimboot
parent7af10ab660287104c6a3b679914a6a5e9e9587e8 (diff)
wimboot: Mark platforms correctly
There is no Darwin support at all
Diffstat (limited to 'pkgs/tools/misc/wimboot')
-rw-r--r--pkgs/tools/misc/wimboot/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/wimboot/default.nix b/pkgs/tools/misc/wimboot/default.nix
index 67df4056b5f40..bc43d77bbfba5 100644
--- a/pkgs/tools/misc/wimboot/default.nix
+++ b/pkgs/tools/misc/wimboot/default.nix
@@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
     description = "Windows Imaging Format bootloader";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ das_j ajs124 ];
-    platforms = platforms.x86; # Fails on aarch64
+    platforms = [ "x86_64-linux" ];
   };
 }