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

19 lines
505 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
2015-06-22 21:41:23 +02:00
import ./generic.nix (args // rec {
2017-03-14 01:15:42 +01:00
version = "4.1.39";
2015-06-22 21:41:23 +02:00
extraMeta.branch = "4.1";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2017-03-14 01:15:42 +01:00
sha256 = "0m48slb13ipnjnw4inhyb74xxpla94344wbc2y5lzb402n5jrs58";
2015-06-22 21:41:23 +02:00
};
kernelPatches = args.kernelPatches;
2015-06-22 21:41:23 +02:00
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))