nixpkgs-suyu/pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix

28 lines
666 B
Nix
Raw Normal View History

2017-06-28 22:32:25 +02:00
{ stdenv, hostPlatform, fetchFromGitHub, perl, buildLinux, ... } @ args:
let
2017-07-13 14:40:08 +02:00
version = "4.12.1";
revision = "a";
sha256 = "0fjw5fmxpvdhfqkr4lcpmqw8xxj92q19ya8q48yhxvv149ahcvhq";
in
import ./generic.nix (args // {
version = "${version}-${revision}";
2017-07-06 17:42:20 +02:00
extraMeta.branch = "4.12";
modDirVersion = "${version}.0";
src = fetchFromGitHub {
inherit sha256;
owner = "copperhead";
repo = "linux-hardened";
rev = "${version}.${revision}";
};
kernelPatches = args.kernelPatches;
features.iwlwifi = true;
features.efiBootStub = true;
features.needsCifsUtils = true;
features.netfilterRPFilter = true;
} // (args.argsOverride or {}))