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

19 lines
520 B
Nix
Raw Normal View History

2017-09-04 01:41:44 +02:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-09-14 14:34:19 +02:00
version = "4.13.2";
2017-09-04 01:41:44 +02:00
extraMeta.branch = "4.13";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-09-14 14:34:19 +02:00
sha256 = "1lgwgw9yp5ywbylnmahsmqzs98yfq53mvvqqdgp7ljiqg8bxqjh6";
2017-09-04 01:41:44 +02:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))