'building'

This commit is contained in:
mjallen18
2025-12-29 15:18:05 -06:00
parent 462494277a
commit 67fb7d7323
2 changed files with 11 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ in
"libcamera-rpi"
"libsecret"
"linux"
"linux-rpi"
"linuxPackages_cachyos"
"linuxPackages_cachyos-lto"
"linuxPackages_cachyos-lto-znver4"
@@ -69,13 +70,15 @@ in
};
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; };
linuxPackages_rpi4 = super.linuxPackagesFor (super.${namespace}.linux-rpi.override { stdenv = super.ccacheStdenv; rpiVersion = 4; });
linuxPackages_rpi5 = super.linuxPackagesFor (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: {
"raspberrypi-utils" = super.${namespace}."raspberrypi-utils";

View File

@@ -16,7 +16,7 @@ let
in
{
# ${namespace} = final.${namespace} // {
linuxPackages_rpi5 = final.linuxPackagesFor pi5;
# linuxPackages_rpi5 = final.linuxPackagesFor pi5;
linuxPackages_rpi4 = final.linuxPackagesFor pi4;
# };
}