summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2020-10-06 20:47:01 +0200
committerJanne Heß <janne@hess.ooo>2020-10-07 00:41:15 +0200
commit9a966e84b6e485c60cde15facffd76ae340b06e6 (patch)
treef62fb36f815adbbf9f5481a98e8490cd99c8328b /pkgs/os-specific/linux/firmware/raspberrypi/default.nix
parent65d32c97afb16aa6e184577693c04803a2d46517 (diff)
downloadnixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar.gz
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar.bz2
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar.lz
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar.xz
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.tar.zst
nixpkgs-9a966e84b6e485c60cde15facffd76ae340b06e6.zip
raspberrypifw: 1.20200601 -> 1.20200902
Also disable the fixup phase since it only throws errors and remove the
platforms since these are only static files.
Diffstat (limited to 'pkgs/os-specific/linux/firmware/raspberrypi/default.nix')
-rw-r--r--pkgs/os-specific/linux/firmware/raspberrypi/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
index 77a28444636..6036eff2d98 100644
--- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
+++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "raspberrypi-firmware";
-  version = "1.20200601";
+  version = "1.20200902";
 
   src = fetchFromGitHub {
     owner = "raspberrypi";
     repo = "firmware";
     rev = version;
-    sha256 = "1vm038f9digwg8gdxl2bypzlip3ycjb6bl56274gh5i9abl6wjvf";
+    sha256 = "1dj5vyhz2ljka7hwhl6s14hd017fspix1xp7zbm7lzdyys9jb9ni";
   };
 
   installPhase = ''
@@ -16,11 +16,12 @@ stdenv.mkDerivation rec {
     cp -R boot/* $out/share/raspberrypi/boot
   '';
 
+  dontFixup = true;
+
   meta = with stdenv.lib; {
     description = "Firmware for the Raspberry Pi board";
     homepage = "https://github.com/raspberrypi/firmware";
     license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
-    platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
     maintainers = with maintainers; [ dezgeg tavyc ];
   };
 }