Unverified Commit 0a6b1ff6 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #173581 from helsinki-systems/fix/wimboot

wimboot: Mark platforms correctly
parents ed584436 063298cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
}