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

31 lines
845 B
Nix
Raw Normal View History

2017-06-28 22:32:25 +02:00
{ stdenv, hostPlatform, fetchFromGitHub, perl, buildLinux, ... } @ args:
2017-09-04 17:09:29 +02:00
with stdenv.lib;
let
2017-12-20 19:22:15 +01:00
version = "4.14.8";
revision = "b";
sha256 = "02wf94bg2kbn63ivnnd3qqflhjq49902s80l3hpr96v9kfdk4p4x";
2017-09-04 17:09:29 +02:00
# modVersion needs to be x.y.z, will automatically add .0 if needed
modVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
2017-09-04 17:09:29 +02:00
# branchVersion needs to be x.y
branchVersion = concatStrings (intersperse "." (take 2 (splitString "." version)));
modDirVersion = "${modVersion}-hardened";
in
import ./generic.nix (args // {
2017-09-04 17:09:29 +02:00
inherit modDirVersion;
version = "${version}-${revision}";
2017-09-04 17:09:29 +02:00
extraMeta.branch = "${branchVersion}";
src = fetchFromGitHub {
inherit sha256;
owner = "copperhead";
repo = "linux-hardened";
rev = "${version}.${revision}";
};
} // (args.argsOverride or {}))