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

19 lines
505 B
Nix
Raw Normal View History

2016-12-12 01:33:05 +01:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-02-17 19:08:14 +01:00
version = "4.9.10";
2016-12-12 01:33:05 +01:00
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-02-17 19:08:14 +01:00
sha256 = "098mcq3rg05gpammcdfhr2xhcy69ggc9h5g18m4ymnfqdx3havmx";
2016-12-12 01:33:05 +01:00
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))