wimboot: Mark platforms correctly

There is no Darwin support at all
This commit is contained in:
Janne Heß 2022-05-19 09:49:12 +02:00
parent 7af10ab660
commit 063298cdb1
No known key found for this signature in database
GPG Key ID: 69165158F05265DF

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