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

19 lines
505 B
Nix
Raw Normal View History

2016-01-13 01:39:00 +01:00
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
2017-02-09 16:27:16 +01:00
version = "4.4.48";
2016-01-13 01:39:00 +01:00
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-02-09 16:27:16 +01:00
sha256 = "09c0rfm9ycyjyz0nsz34fa1cvfzx8pyzcmxhyz0dqiw6x4fqal3w";
2016-01-13 01:39:00 +01:00
};
kernelPatches = args.kernelPatches;
2016-01-13 01:39:00 +01:00
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))