nixpkgs/pkgs/os-specific/linux/kernel/linux-3.12.nix

17 lines
446 B
Nix
Raw Normal View History

2013-09-25 12:49:49 +02:00
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
version = "3.12.9";
2013-09-25 12:49:49 +02:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
sha256 = "1jzmcqshfgnkk4dibkxc7w06axw7c2fxdpghvm6d7amfpcd9ygka";
2013-09-25 12:49:49 +02:00
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
})