Files
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.11.nix
T

19 lines
506 B
Nix
Raw Normal View History

2017-05-01 19:04:45 -04:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-06-24 11:20:32 -04:00
version = "4.11.7";
2017-05-01 19:04:45 -04:00
extraMeta.branch = "4.11";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-06-24 11:20:32 -04:00
sha256 = "1v94lkc4lzb2k9c3y7j6h4zx827abcy7jqm9jlp5n15dlbmj6bsk";
2017-05-01 19:04:45 -04:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))