linux: 5.10.13 -> 5.10.14

master
Tim Steinbach 2021-02-08 15:30:59 -05:00
parent 5eba1183f6
commit 1d0d45860e
No known key found for this signature in database
GPG Key ID: 1B40229F19262402
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.13";
version = "5.10.14";
# 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 = "1wp1vy9y50ncwlx5yqgya5gy0vdqgzn0icffg6dzmvjwwc68qs86";
sha256 = "0ahxga1jdgn8kxln0pn8j42qxx0dhrhm9vcpwilyjnwb36gvf9zs";
};
} // (args.argsOverride or {}))