linux: 5.10 -> 5.10.1

gstqt5
Tim Steinbach 2020-12-15 12:33:20 -05:00
parent f5525b73a2
commit a83bf32bab
No known key found for this signature in database
GPG Key ID: 6538CB9266B06F31
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "5.10";
version = "5.10.1";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${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 = "sha256-3N+Z5D6YMw2SUBaYW/vHuDxm02e3FLLeDLv8v4PYykM=";
sha256 = "0p2fl7kl4ckphq17xir7n7vgrzlhbdqmyd2yyp4yilwvih9625pd";
};
} // (args.argsOverride or {}))