linux-copperhead: LTS based on regular 4.14

This commit is contained in:
Tim Steinbach
2018-06-10 21:00:47 -04:00
parent 7eb169a257
commit a444dcad03
4 changed files with 2880 additions and 8 deletions
+4 -1
View File
@@ -1,10 +1,13 @@
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.48";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
# branchVersion needs to be x.y
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));