nixpkgs/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-26 16:25:09 +01:00
version = "4.9.13";
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-26 16:25:09 +01:00
sha256 = "0s52hrs3wrsa1chzgcqpxwgb5kjmpfd82i964n9d2bmk9zn4liin";
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 {}))