nixpkgs/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
version = "4.14.1";
2017-09-16 14:57:07 +02:00
revision = "a";
sha256 = "0yp05xyz2ygxkhd17s85cqnvi93a49svgm0l1kbyb7y08mg5gp4j";
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 {}))