linux: 5.4.86 -> 5.4.87

This commit is contained in:
Tim Steinbach 2021-01-06 11:27:48 -05:00
parent 6d1f725cf6
commit 7cd9d714ee
No known key found for this signature in database
GPG Key ID: 1B40229F19262402

View File

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "5.4.86";
version = "5.4.87";
# 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 = "12qf7gza94s4f7smi3dk6i6hqcz0fbc64ghapan57fgpdvybadpb";
sha256 = "0cawb7md97i0hz83hf7l4ihn9lyrg8q64j8jam8n9fw45qzfjd3a";
};
} // (args.argsOverride or {}))