summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiklas <44636701+MayNiklas@users.noreply.github.com>2022-05-13 22:20:55 +0200
committerGitHub <noreply@github.com>2022-05-13 22:20:55 +0200
commite7721a34179edb6a424a6464ff66e8ddf334c7ca (patch)
tree1d1add4ec14ef179a78e7186ff27c72048764d15
parentc0b9099f1356c8b741109ce58a0cba629458d88d (diff)
downloadnixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar.gz
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar.bz2
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar.lz
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar.xz
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.tar.zst
nixpkgs-e7721a34179edb6a424a6464ff66e8ddf334c7ca.zip
rpiboot: add aarch64-darwin and x86_64-darwin to the list of supported platforms
-rw-r--r--pkgs/development/misc/rpiboot/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/misc/rpiboot/default.nix b/pkgs/development/misc/rpiboot/default.nix
index 941c7ce904e..35fb41d0a8d 100644
--- a/pkgs/development/misc/rpiboot/default.nix
+++ b/pkgs/development/misc/rpiboot/default.nix
@@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
     description = "Utility to boot a Raspberry Pi CM/CM3/CM4/Zero over USB";
     license = licenses.asl20;
     maintainers = with maintainers; [ cartr ];
-    platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" "x86_64-linux" ];
+    platforms = [ "aarch64-linux" "aarch64-darwin" "armv7l-linux" "armv6l-linux" "x86_64-linux" "x86_64-darwin" ];
   };
 }