19 lines
505 B
Nix
Raw Normal View History

2016-01-12 19:39:00 -05:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-04-27 22:12:35 -04:00
version = "4.4.64";
2016-01-12 19:39:00 -05:00
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-04-27 22:12:35 -04:00
sha256 = "0rfx3018chv4a486f03yas7fjr5vpqzhfjaa99rs069qid2smhn7";
2016-01-12 19:39:00 -05:00
};
kernelPatches = args.kernelPatches;
2016-01-12 19:39:00 -05:00
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))