19 lines
557 B
Nix
19 lines
557 B
Nix
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
||
|
|
||
|
import ./generic.nix (args // rec {
|
||
|
version = "4.4";
|
||
|
modDirVersion = "4.4.0";
|
||
|
extraMeta.branch = "4.4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
||
|
sha256 = "401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2";
|
||
|
};
|
||
|
|
||
|
features.iwlwifi = true;
|
||
|
features.efiBootStub = true;
|
||
|
features.needsCifsUtils = true;
|
||
|
features.canDisableNetfilterConntrackHelpers = true;
|
||
|
features.netfilterRPFilter = true;
|
||
|
} // (args.argsOverride or {}))
|