bump deps

This commit is contained in:
Travis Staton 2024-10-07 17:11:55 -04:00 committed by Travis Staton
parent d342e97d25
commit 4501cff529
5 changed files with 44 additions and 38 deletions

View file

@ -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); }

View file

@ -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 = ''