linux: 5.2.4 -> 5.2.5

This commit is contained in:
Tim Steinbach 2019-07-31 08:12:10 -04:00
parent 6f62842a92
commit 9d8e811db9
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 = "5.2.4";
version = "5.2.5";
# 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/v5.x/linux-${version}.tar.xz";
sha256 = "0hzfayq79bksng09ngw3k3h3zkd6ndfn059rvwpznypy1fg8pkdi";
sha256 = "15ndscsp3yqgas901g6inpmyvinz4cwr5y3md516j2pr8cl40if6";
};
} // (args.argsOverride or {}))