3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-3.12.nix
William A. Kennington III 845f647b86 kernel: 3.12.33 -> 3.12.34
2014-12-08 23:21:07 -08:00

18 lines
476 B
Nix

{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
version = "3.12.34";
extraMeta.branch = "3.12";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
sha256 = "037dn7qraqpck36pla4qi60k58kh4h52wfgfnb3mhqy38x2fnrzh";
};
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.canDisableNetfilterConntrackHelpers = true;
features.netfilterRPFilter = true;
})