1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-06-14 08:43:39 +02:00
wip-pinebook-pro/overlay.nix
2022-02-20 20:04:06 -05:00

17 lines
654 B
Nix

final: super:
let
inherit (final) callPackage kernelPatches linuxPackagesFor;
in
{
# The unqualified kernel attr is deprecated.
linuxPackages_pinebookpro_latest = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
linux_pinebookpro_latest = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
linux_pinebookpro_lts = callPackage ./kernel/lts { kernelPatches = []; };
linuxPackages_pinebookpro_lts = linuxPackagesFor final.linux_pinebookpro_lts;
pinebookpro-ap6256-firmware = callPackage ./firmware/ap6256-firmware.nix {};
pinebookpro-keyboard-updater = callPackage ./keyboard-updater {};
}