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

19 lines
506 B
Nix
Raw Normal View History

2017-02-20 15:32:46 +03:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-04-08 15:02:18 +03:00
version = "4.10.9";
2017-02-20 15:32:46 +03:00
extraMeta.branch = "4.10";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-04-08 15:02:18 +03:00
sha256 = "1y8cpwhkcb8lsryiyqqr1w58snw26x3x6c4f9v1xnh9grz0s4j6h";
2017-02-20 15:32:46 +03:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))