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
commit 0a6b1ff69f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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" ];
};
}