mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-26 21:09:43 +01:00
15 lines
659 B
Nix
15 lines
659 B
Nix
final: super:
|
|
|
|
let
|
|
inherit (final) callPackage kernelPatches linuxPackagesFor;
|
|
in
|
|
{
|
|
linuxPackages_pinebookpro_latest = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
|
|
linux_pinebookpro_latest = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
|
|
|
|
linuxPackages_pinebookpro_lts = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
|
|
linux_pinebookpro_lts = throw "Use the mainline kernel directly instead (linuxPackages_latest).";
|
|
|
|
pinebookpro-ap6256-firmware = callPackage ./firmware/ap6256-firmware.nix {};
|
|
pinebookpro-keyboard-updater = callPackage ./keyboard-updater {};
|
|
}
|