19 lines
507 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-05-15 01:27:30 +03:00
version = "4.10.16";
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-05-15 01:27:30 +03:00
sha256 = "02z0gzycjx0nkxazsfqh9dxhs1xd99z589i4qd8d3d740p2lgifw";
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 {}))