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

19 lines
521 B
Nix
Raw Normal View History

2017-07-03 17:57:40 +02:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-09-10 18:12:27 +02:00
version = "4.12.12";
2017-07-03 17:57:40 +02:00
extraMeta.branch = "4.12";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-09-10 18:12:27 +02:00
sha256 = "1d254yxn46ydp0x3s5cpyg4p74zvdwiqfiaaim1m3g6rwjmlkjpa";
2017-07-03 17:57:40 +02:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))