8525b78d05
`kernel.override { features = ... }` didn't work before, now it works as expected.
31 lines
845 B
Nix
31 lines
845 B
Nix
{ stdenv, hostPlatform, fetchFromGitHub, perl, buildLinux, ... } @ args:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
version = "4.13.2";
|
|
revision = "a";
|
|
sha256 = "1srglf014a2ra4sgzwrf53wdc3rrr5lx8dcx57xm4lpvrc4r66y6";
|
|
|
|
# modVersion needs to be x.y.z, will automatically add .0 if needed
|
|
modVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
|
|
|
|
# branchVersion needs to be x.y
|
|
branchVersion = concatStrings (intersperse "." (take 2 (splitString "." version)));
|
|
|
|
modDirVersion = "${modVersion}-hardened";
|
|
in
|
|
import ./generic.nix (args // {
|
|
inherit modDirVersion;
|
|
|
|
version = "${version}-${revision}";
|
|
extraMeta.branch = "${branchVersion}";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit sha256;
|
|
owner = "copperhead";
|
|
repo = "linux-hardened";
|
|
rev = "${version}.${revision}";
|
|
};
|
|
} // (args.argsOverride or {}))
|