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

19 lines
506 B
Nix
Raw Normal View History

2017-02-20 12:32:46 +00:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-02-26 15:23:27 +00:00
version = "4.10.1";
2017-02-20 12:32:46 +00:00
extraMeta.branch = "4.10";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-02-26 15:23:27 +00:00
sha256 = "0hrmph137q4j2xfsv1fyayig47g4v8ivd2rqsw03dy7mzasnp83c";
2017-02-20 12:32:46 +00:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))