chore: return to stable versions, undo compression, fix libcamera version

This commit is contained in:
adminy 2024-06-22 23:49:48 +01:00
parent 4240bff280
commit b9c9972ec6
4 changed files with 23 additions and 18 deletions

View file

@ -70,6 +70,11 @@ let
rpi-kernels = builtins.foldl' (b: a: b // rpi-kernel a) { };
in
{
# disable firmware compression so that brcm firmware can be found at
# the path expected by raspberry pi firmware/device tree
compressFirmwareXz = x: x;
compressFirmwareZstd = x: x;
# provide generic rpi arm64 u-boot
uboot_rpi_arm64 = prev.buildUBoot rec {
defconfig = "rpi_arm64_defconfig";

View file

@ -11,7 +11,7 @@ final: prev:
libpisp = final.stdenv.mkDerivation {
name = "libpisp";
version = "1.0.5";
version = "1.0.6";
src = libpisp-src;
nativeBuildInputs = with final; [ pkg-config meson ninja ];
buildInputs = with final; [ nlohmann_json boost ];