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-21 08:03:43 -04:00
version = "4.4.63";
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-21 08:03:43 -04:00
sha256 = "1v2pilwzkdcxvda96g1yy62abqz6w2zhcymgj73maz9836xsjxbv";
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 {}))