2015-11-02 19:01:01 +00:00
|
|
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2016-01-24 03:53:38 +00:00
|
|
|
version = "4.3.4";
|
2015-12-12 13:46:34 +00:00
|
|
|
|
2015-11-02 19:01:01 +00:00
|
|
|
extraMeta.branch = "4.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
2016-01-24 03:53:38 +00:00
|
|
|
sha256 = "0vcsvnpxkpxiidlbw3cy1kl02hfml2jy3cbrvwj2nc4a9y5fb3hj";
|
2015-11-02 19:01:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
|
|
features.netfilterRPFilter = true;
|
|
|
|
} // (args.argsOverride or {}))
|