mirror of
https://github.com/nix-community/raspberry-pi-nix.git
synced 2025-11-08 19:46:03 +01:00
bump deps
This commit is contained in:
parent
d342e97d25
commit
4501cff529
5 changed files with 44 additions and 38 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{ u-boot-src
|
||||
, rpi-linux-6_6_47-src
|
||||
, rpi-linux-6_10_8-src
|
||||
, rpi-linux-6_6_54-src
|
||||
, rpi-linux-6_10_12-src
|
||||
, rpi-firmware-src
|
||||
, rpi-firmware-nonfree-src
|
||||
, rpi-bluez-firmware-src
|
||||
|
|
@ -9,9 +9,9 @@
|
|||
final: prev:
|
||||
let
|
||||
versions = {
|
||||
v6_6_47.src = rpi-linux-6_6_47-src;
|
||||
v6_10_8 = {
|
||||
src = rpi-linux-6_10_8-src;
|
||||
v6_6_54.src = rpi-linux-6_6_54-src;
|
||||
v6_10_12 = {
|
||||
src = rpi-linux-6_10_12-src;
|
||||
patches = [
|
||||
{
|
||||
name = "remove-readme-target.patch";
|
||||
|
|
@ -116,7 +116,7 @@ in
|
|||
# rpi kernels and firmware are available at
|
||||
# `pkgs.rpi-kernels.<VERSION>.<BOARD>'.
|
||||
#
|
||||
# For example: `pkgs.rpi-kernels.v6_6_47.bcm2712'
|
||||
# For example: `pkgs.rpi-kernels.v6_6_54.bcm2712'
|
||||
rpi-kernels = rpi-kernels (
|
||||
final.lib.cartesianProduct
|
||||
{ board = boards; version = (builtins.attrNames versions); }
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ final: prev: {
|
|||
|
||||
libpisp = final.stdenv.mkDerivation {
|
||||
name = "libpisp";
|
||||
version = "1.0.6";
|
||||
version = "1.0.7";
|
||||
src = libpisp-src;
|
||||
nativeBuildInputs = with final; [ pkg-config meson ninja ];
|
||||
buildInputs = with final; [ nlohmann_json boost ];
|
||||
|
|
@ -21,14 +21,20 @@ final: prev: {
|
|||
};
|
||||
|
||||
libcamera = prev.libcamera.overrideAttrs (old: {
|
||||
version = "0.3.0";
|
||||
version = "0.3.1";
|
||||
src = libcamera-src;
|
||||
buildInputs = old.buildInputs ++ (with final; [
|
||||
libpisp openssl libtiff
|
||||
libpisp
|
||||
openssl
|
||||
libtiff
|
||||
(python3.withPackages (ps: with ps; [
|
||||
python3-gnutls pybind11 pyyaml ply
|
||||
python3-gnutls
|
||||
pybind11
|
||||
pyyaml
|
||||
ply
|
||||
]))
|
||||
libglibutil gst_all_1.gst-plugins-base
|
||||
libglibutil
|
||||
gst_all_1.gst-plugins-base
|
||||
]);
|
||||
patches = [ ];
|
||||
postPatch = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue