Linux 3.12 release

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-11-03 20:14:48 -05:00
parent 61e0337a5c
commit 268bb64b68
2 changed files with 6 additions and 4 deletions

View File

@ -1,11 +1,13 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
version = "3.12-rc3";
version = "3.12";
modDirVersion = "3.12.0";
src = fetchurl {
url = "https://www.kernel.org/pub/linux/kernel/v3.0/testing/linux-${version}.tar.xz";
sha256 = "1rayb0f4n81yp9ghcws0v36dpqyl9ks3naf37p2qy7jvrwagmj28";
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
sha256 = "00jshh7abn8fj6zsbmfaxxfpg83033413k5nqqfsb7z1zp3hw4if";
};
features.iwlwifi = true;

View File

@ -6820,7 +6820,7 @@ let
linuxPackages_3_11 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_11 linuxPackages_3_11);
linuxPackages_3_12 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_12 linuxPackages_3_12);
# Update this when adding a new version!
linuxPackages_latest = pkgs.linuxPackages_3_11;
linuxPackages_latest = pkgs.linuxPackages_3_12;
# The current default kernel / kernel modules.
linux = linuxPackages.kernel;