27 lines
805 B
Nix
27 lines
805 B
Nix
|
{ stdenv, fetchFromGitHub }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "raspberrypi-firmware";
|
||
|
version = "1.20190925";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "raspberrypi";
|
||
|
repo = "firmware";
|
||
|
rev = version;
|
||
|
sha256 = "0xyj3f04dcfnl9hp8hakgwcb1msqh7934n0pclcmzy47xjkz7ris";
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/share/raspberrypi/boot
|
||
|
cp -R boot/* $out/share/raspberrypi/boot
|
||
|
'';
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|