19 lines
506 B
Nix
Raw Normal View History

2017-02-20 07:32:46 -05:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-03-19 12:13:36 -04:00
version = "4.10.4";
2017-02-20 07:32:46 -05:00
extraMeta.branch = "4.10";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-03-19 12:13:36 -04:00
sha256 = "18cglngl42hcm0578hrsn962g2r1z9x6p5h9c6d3g0ac8siascqp";
2017-02-20 07:32:46 -05:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))