File tree Expand file tree Collapse file tree 5 files changed +44
-38
lines changed Expand file tree Collapse file tree 5 files changed +44
-38
lines changed Original file line number Diff line number Diff line change 7
7
flake = false ;
8
8
url = "https://ftp.denx.de/pub/u-boot/u-boot-2024.07.tar.bz2" ;
9
9
} ;
10
- rpi-linux-6_6_47 -src = {
10
+ rpi-linux-6_6_54 -src = {
11
11
flake = false ;
12
12
url = "github:raspberrypi/linux/rpi-6.6.y" ;
13
13
} ;
14
- rpi-linux-6_10_8 -src = {
14
+ rpi-linux-6_10_12 -src = {
15
15
flake = false ;
16
16
url = "github:raspberrypi/linux/rpi-6.10.y" ;
17
17
} ;
18
18
rpi-firmware-src = {
19
19
flake = false ;
20
- url = "github:raspberrypi/firmware/1.20240902 " ;
20
+ url = "github:raspberrypi/firmware/1.20241001 " ;
21
21
} ;
22
22
rpi-firmware-nonfree-src = {
23
23
flake = false ;
29
29
} ;
30
30
rpicam-apps-src = {
31
31
flake = false ;
32
- url = "github:raspberrypi/rpicam-apps/v1.5.1 " ;
32
+ url = "github:raspberrypi/rpicam-apps/v1.5.2 " ;
33
33
} ;
34
34
libcamera-src = {
35
35
flake = false ;
Original file line number Diff line number Diff line change 1
1
{ u-boot-src
2
- , rpi-linux-6_6_47 -src
3
- , rpi-linux-6_10_8 -src
2
+ , rpi-linux-6_6_54 -src
3
+ , rpi-linux-6_10_12 -src
4
4
, rpi-firmware-src
5
5
, rpi-firmware-nonfree-src
6
6
, rpi-bluez-firmware-src
9
9
final : prev :
10
10
let
11
11
versions = {
12
- v6_6_47 . src = rpi-linux-6_6_47 -src ;
13
- v6_10_8 = {
14
- src = rpi-linux-6_10_8 -src ;
12
+ v6_6_54 . src = rpi-linux-6_6_54 -src ;
13
+ v6_10_12 = {
14
+ src = rpi-linux-6_10_12 -src ;
15
15
patches = [
16
16
{
17
17
name = "remove-readme-target.patch" ;
116
116
# rpi kernels and firmware are available at
117
117
# `pkgs.rpi-kernels.<VERSION>.<BOARD>'.
118
118
#
119
- # For example: `pkgs.rpi-kernels.v6_6_47 .bcm2712'
119
+ # For example: `pkgs.rpi-kernels.v6_6_54 .bcm2712'
120
120
rpi-kernels = rpi-kernels (
121
121
final . lib . cartesianProduct
122
122
{ board = boards ; version = ( builtins . attrNames versions ) ; }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ final: prev: {
10
10
11
11
libpisp = final . stdenv . mkDerivation {
12
12
name = "libpisp" ;
13
- version = "1.0.6 " ;
13
+ version = "1.0.7 " ;
14
14
src = libpisp-src ;
15
15
nativeBuildInputs = with final ; [ pkg-config meson ninja ] ;
16
16
buildInputs = with final ; [ nlohmann_json boost ] ;
@@ -21,14 +21,20 @@ final: prev: {
21
21
} ;
22
22
23
23
libcamera = prev . libcamera . overrideAttrs ( old : {
24
- version = "0.3.0 " ;
24
+ version = "0.3.1 " ;
25
25
src = libcamera-src ;
26
26
buildInputs = old . buildInputs ++ ( with final ; [
27
- libpisp openssl libtiff
27
+ libpisp
28
+ openssl
29
+ libtiff
28
30
( python3 . withPackages ( ps : with ps ; [
29
- python3-gnutls pybind11 pyyaml ply
31
+ python3-gnutls
32
+ pybind11
33
+ pyyaml
34
+ ply
30
35
] ) )
31
- libglibutil gst_all_1 . gst-plugins-base
36
+ libglibutil
37
+ gst_all_1 . gst-plugins-base
32
38
] ) ;
33
39
patches = [ ] ;
34
40
postPatch = ''
Original file line number Diff line number Diff line change 13
13
options = with lib ; {
14
14
raspberry-pi-nix = {
15
15
kernel-version = mkOption {
16
- default = "v6_6_47 " ;
16
+ default = "v6_6_54 " ;
17
17
type = types . str ;
18
18
description = "Kernel version to build." ;
19
19
} ;
69
69
'' ;
70
70
} ;
71
71
72
- package = mkPackageOption pkgs "uboot-rpi-arm64" { } ;
72
+ package = mkPackageOption pkgs "uboot-rpi-arm64" { } ;
73
73
} ;
74
74
} ;
75
75
} ;
You can’t perform that action at this time.
0 commit comments