tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
raspberrypifw: 1.20230106 -> 1.20230405
Bernardo Meurer
2 years ago
f4e0f22a
29339c15
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
firmware
raspberrypi
default.nix
+5
-3
pkgs/os-specific/linux/firmware/raspberrypi/default.nix
···
3
3
stdenvNoCC.mkDerivation rec {
4
4
# NOTE: this should be updated with linux_rpi
5
5
pname = "raspberrypi-firmware";
6
6
-
version = "1.20230106";
6
6
+
version = "1.20230405";
7
7
8
8
src = fetchFromGitHub {
9
9
owner = "raspberrypi";
10
10
repo = "firmware";
11
11
rev = version;
12
12
-
hash = "sha512-iKUR16RipN8BGAmXteTJUzd/P+m5gnbWCJ28LEzYfOTJnGSal63zI7LDQg/HIKXx9wMTARQKObeKn+7ioS4QkA==";
12
12
+
hash = "sha256-UtUd1MbsrDFxd/1C3eOAMDKPZMx+kSMFYOJP+Kc6IU8=";
13
13
};
14
14
15
15
installPhase = ''
···
26
26
homepage = "https://github.com/raspberrypi/firmware";
27
27
license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
28
28
maintainers = with maintainers; [ dezgeg ];
29
29
-
broken = stdenvNoCC.isDarwin; # Hash mismatch on source, mystery.
29
29
+
# Hash mismatch on source, mystery.
30
30
+
# Maybe due to https://github.com/NixOS/nix/issues/847
31
31
+
broken = stdenvNoCC.isDarwin;
30
32
};
31
33
}