nixpkgs/pkgs/os-specific/linux/firmware/raspberrypi/default.nix
2018-04-05 02:42:12 +03:00

27 lines
819 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "raspberrypi-firmware-${version}";
version = "1.20180328";
src = fetchFromGitHub {
owner = "raspberrypi";
repo = "firmware";
rev = version;
sha256 = "19h4lv11idy268pyrq21c5gsff77d5xr9xjkpmzfpcq34gjh3x21";
};
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 viric tavyc ];
};
}