This repository was archived by the owner on Mar 23, 2025. It is now read-only.
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 77 flake = false ;
88 url = "https://ftp.denx.de/pub/u-boot/u-boot-2024.07.tar.bz2" ;
99 } ;
10- rpi-linux-6_6_47 -src = {
10+ rpi-linux-6_6_54 -src = {
1111 flake = false ;
1212 url = "github:raspberrypi/linux/rpi-6.6.y" ;
1313 } ;
14- rpi-linux-6_10_8 -src = {
14+ rpi-linux-6_10_12 -src = {
1515 flake = false ;
1616 url = "github:raspberrypi/linux/rpi-6.10.y" ;
1717 } ;
1818 rpi-firmware-src = {
1919 flake = false ;
20- url = "github:raspberrypi/firmware/1.20240902 " ;
20+ url = "github:raspberrypi/firmware/1.20241001 " ;
2121 } ;
2222 rpi-firmware-nonfree-src = {
2323 flake = false ;
2929 } ;
3030 rpicam-apps-src = {
3131 flake = false ;
32- url = "github:raspberrypi/rpicam-apps/v1.5.1 " ;
32+ url = "github:raspberrypi/rpicam-apps/v1.5.2 " ;
3333 } ;
3434 libcamera-src = {
3535 flake = false ;
Original file line number Diff line number Diff line change 11{ 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
44, rpi-firmware-src
55, rpi-firmware-nonfree-src
66, rpi-bluez-firmware-src
99final : prev :
1010let
1111 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 ;
1515 patches = [
1616 {
1717 name = "remove-readme-target.patch" ;
116116 # rpi kernels and firmware are available at
117117 # `pkgs.rpi-kernels.<VERSION>.<BOARD>'.
118118 #
119- # For example: `pkgs.rpi-kernels.v6_6_47 .bcm2712'
119+ # For example: `pkgs.rpi-kernels.v6_6_54 .bcm2712'
120120 rpi-kernels = rpi-kernels (
121121 final . lib . cartesianProduct
122122 { board = boards ; version = ( builtins . attrNames versions ) ; }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ final: prev: {
1010
1111 libpisp = final . stdenv . mkDerivation {
1212 name = "libpisp" ;
13- version = "1.0.6 " ;
13+ version = "1.0.7 " ;
1414 src = libpisp-src ;
1515 nativeBuildInputs = with final ; [ pkg-config meson ninja ] ;
1616 buildInputs = with final ; [ nlohmann_json boost ] ;
@@ -21,14 +21,20 @@ final: prev: {
2121 } ;
2222
2323 libcamera = prev . libcamera . overrideAttrs ( old : {
24- version = "0.3.0 " ;
24+ version = "0.3.1 " ;
2525 src = libcamera-src ;
2626 buildInputs = old . buildInputs ++ ( with final ; [
27- libpisp openssl libtiff
27+ libpisp
28+ openssl
29+ libtiff
2830 ( python3 . withPackages ( ps : with ps ; [
29- python3-gnutls pybind11 pyyaml ply
31+ python3-gnutls
32+ pybind11
33+ pyyaml
34+ ply
3035 ] ) )
31- libglibutil gst_all_1 . gst-plugins-base
36+ libglibutil
37+ gst_all_1 . gst-plugins-base
3238 ] ) ;
3339 patches = [ ] ;
3440 postPatch = ''
Original file line number Diff line number Diff line change 1313 options = with lib ; {
1414 raspberry-pi-nix = {
1515 kernel-version = mkOption {
16- default = "v6_6_47 " ;
16+ default = "v6_6_54 " ;
1717 type = types . str ;
1818 description = "Kernel version to build." ;
1919 } ;
6969 '' ;
7070 } ;
7171
72- package = mkPackageOption pkgs "uboot-rpi-arm64" { } ;
72+ package = mkPackageOption pkgs "uboot-rpi-arm64" { } ;
7373 } ;
7474 } ;
7575 } ;
You can’t perform that action at this time.
0 commit comments