linux: 4.19.14 -> 4.19.15

This commit is contained in:
Tim Steinbach 2019-01-13 15:49:34 -05:00
parent 0a8b109e81
commit bbc1f0c452
No known key found for this signature in database
GPG Key ID: 6C654787275A64F1
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.19.14";
version = "4.19.15";
# 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;
@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0ihwywjz2jddrcd1883sy27b43mz212asrdiimnih82ivm4nhci4";
sha256 = "0v9nbkxc017ydcah5q0yhrlq1f7awc33m6w4gpif2f0wvxfimxkq";
};
} // (args.argsOverride or {}))