3
0
Fork 0
forked from mirrors/nixpkgs

Add a latest linuxPackages for living on the edge

Theoretically this could be automatically detected by finding all
packages named 'linux' and choosing the latest, but that's overkill.
Just update it when a new kernel is added.

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-03-28 10:59:40 -04:00
parent f39310b525
commit cfbdb33197

View file

@ -6030,6 +6030,8 @@ let
linuxPackages_3_6_rpi = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_6_rpi linuxPackages_3_6_rpi);
linuxPackages_3_7 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_7 linuxPackages_3_7);
linuxPackages_3_8 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_8 linuxPackages_3_8);
# Update this when adding a new version!
linuxPackages_latest = pkgs.linuxPackages_3_8;
# The current default kernel / kernel modules.
linux = linuxPackages.kernel;