'building'

This commit is contained in:
mjallen18
2025-12-26 22:47:11 -06:00
parent c8aebb9e4a
commit f549723a61
6 changed files with 26 additions and 18 deletions

View File

@@ -31,8 +31,8 @@ in
environment.systemPackages = with pkgs; [
i2c-tools
raspberrypi-eeprom
raspberrypifw
raspberrypiWirelessFirmware
pkgs.${namespace}.raspberrypifw
pkgs.${namespace}.raspberryPiWirelessFirmware
raspberrypi-armstubs
erofs-utils
fex

View File

@@ -24,7 +24,6 @@
"jemalloc"
"jupiter-fan-control"
"libcamera-rpi"
"libraspberrypi"
"libsecret"
"linux"
"linuxPackages_cachyos"
@@ -56,7 +55,6 @@
"qt3d"
"qtdeclarative"
"qtmultimedia"
"raspberrypi-utils"
"ryubing"
"sdl"
"sdl2"
@@ -69,12 +67,17 @@
};
nixpkgs.overlays = [
#(_self: super: {
# ${namespace} = super.${namespace} // {
# linux-rpi = super.${namespace}.linux-rpi.override { stdenv = super.ccacheStdenv; };
# libraspberrypi = super.${namespace}.libraspberrypi.override { stdenv = super.ccacheStdenv; };
# raspberrypi-utils = super.${namespace}.raspberrypi-utils.override { stdenv = super.ccacheStdenv; };
# };
#})
(_self: super: {
${namespace} = super.${namespace} // {
linux-rpi = super.${namespace}.linux-rpi.override { stdenv = super.ccacheStdenv; };
libraspberrypi = super.${namespace}.libraspberrypi.override { stdenv = super.ccacheStdenv; };
raspberrypi-utils = super.${namespace}.raspberrypi-utils.override { stdenv = super.ccacheStdenv; };
};
"raspberrypi-utils" = super.${namespace}."raspberrypi-utils";
"raspberrypi-udev-rules" = super.${namespace}."udev-rules";
})
(_self: super: {
"mesa" = super."mesa".override { buildPackages.stdenv = super.ccacheStdenv; };