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

19 lines
519 B
Nix
Raw Normal View History

2017-06-28 22:32:25 +02:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2016-01-13 01:39:00 +01:00
import ./generic.nix (args // rec {
2017-06-27 14:14:39 +02:00
version = "4.4.74";
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-06-27 14:14:39 +02:00
sha256 = "13l0axybmr0lz1br9kxyc6s3mzgais32f54xii7vs4nia1hss6f3";
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 {}))