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-06-24 17:22:56 +02:00
version = "4.9.34";
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-06-24 17:22:56 +02:00
sha256 = "0ij55aqdhqf92a79n9xqw0p32bsksw4zxpn2zhcylhgsn78mkl8k";
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 {}))