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-07 16:27:39 +02:00
version = "4.12.11";
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-07 16:27:39 +02:00
sha256 = "015kyh0v9lkk4a6sa7ysddi7dm639z5p45v2sh2kswsih4sf7kxf";
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 {}))