From 5deb8afdd1652141a3d6af5aa38cde8bf4238e63 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 27 Dec 2020 16:54:46 +0100 Subject: [PATCH] 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. --- pkgs/development/misc/rpiboot/unstable.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/misc/rpiboot/unstable.nix b/pkgs/development/misc/rpiboot/unstable.nix index 2df6314aa2fe..f12f5a845f17 100644 --- a/pkgs/development/misc/rpiboot/unstable.nix +++ b/pkgs/development/misc/rpiboot/unstable.nix @@ -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" ]; }; }