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

18 lines
494 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
2013-09-25 10:49:49 +00:00
import ./generic.nix (args // rec {
2015-11-07 04:10:08 +00:00
version = "3.12.50";
extraMeta.branch = "3.12";
2013-09-25 10:49:49 +00:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
2015-11-07 04:10:08 +00:00
sha256 = "1bn07wsrcbg4qgqd4v2810c3qc0ifbcza0fyj8s54yd78g9qj4lj";
2013-09-25 10:49:49 +00:00
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
})