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

wimboot: Mark platforms correctly
This commit is contained in:
Sandro
2022-05-19 11:44:13 +02:00
committed by GitHub
+1 -1
View File
@@ -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" ];
};
}