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

19 lines
521 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-07-13 13:34:51 +01:00
version = "4.11.10";
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-07-13 13:34:51 +01:00
sha256 = "1dma031rcj8nvcb3znbcffafwm5cpax3cvqkq9zspa8lf5ah52si";
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 {}))