3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.11.nix

19 lines
520 B
Nix
Raw Normal View History

2017-06-28 21:32:25 +01:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2017-05-02 00:04:45 +01:00
import ./generic.nix (args // rec {
2017-06-29 13:29:04 +01:00
version = "4.11.8";
2017-05-02 00:04:45 +01:00
extraMeta.branch = "4.11";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-06-29 13:29:04 +01:00
sha256 = "1f4x4wym6kr57zhjpmvj9p7z2j43zcvpyvkh2nnhsb4yxg5qszcf";
2017-05-02 00:04:45 +01:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))