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 11:49:49 +01:00
import ./generic.nix (args // rec {
2015-10-15 18:38:01 +01:00
version = "3.12.49";
extraMeta.branch = "3.12";
2013-09-25 11:49:49 +01:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
2015-10-15 18:38:01 +01:00
sha256 = "1vl8ghwhrs2sxd7kgi95nqlmf5k8ps0kr2lyly40ys262174i8lg";
2013-09-25 11:49:49 +01:00
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
})