rpiboot-unstable: enable build on x86_64-linux

This tool can run perfectly fine on a x86_64-linux workstation - it's
primarily meant to boot Raspberry Pi CM/CM3/Zero devices, not to run on
them.
This commit is contained in:
Florian Klink 2020-12-27 16:54:46 +01:00
parent 4fe8a8b633
commit 5deb8afdd1

View File

@ -29,6 +29,6 @@ stdenv.mkDerivation {
description = "Utility to boot a Raspberry Pi CM/CM3/Zero over USB";
license = licenses.asl20;
maintainers = with maintainers; [ cartr ];
platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" ];
platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" "x86_64-linux" ];
};
}