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

18 lines
476 B
Nix
Raw Normal View History

2013-09-25 06:49:49 -04:00
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
2014-12-09 02:21:07 -05:00
version = "3.12.34";
extraMeta.branch = "3.12";
2013-09-25 06:49:49 -04:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
2014-12-09 02:21:07 -05:00
sha256 = "037dn7qraqpck36pla4qi60k58kh4h52wfgfnb3mhqy38x2fnrzh";
2013-09-25 06:49:49 -04:00
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
})