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

19 lines
507 B
Nix
Raw Normal View History

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