1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
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-07-05 17:49:56 +01:00
version = "4.11.9";
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-05 17:49:56 +01:00
sha256 = "0q60690hmqhz2x3v6qyjq7lhp2j99dcldvd46myc9ggp78d93j1z";
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 {}))