3
0
Fork 0
forked from mirrors/nixpkgs

linux: 5.15.34 -> 5.15.35

This commit is contained in:
Maximilian Bosch 2022-04-23 13:35:46 +02:00
parent b7353ebce8
commit 55f39cb81e
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.15.34";
version = "5.15.35";
# 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;
@ -15,6 +15,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "0sfviwwp7qy8b5h15lg84dyskih4l082l9gs6yrqj3rg762lcld7";
sha256 = "1n05c4c4ish25x483a2p5177zgda8pq7g4752n1b7chfygi5l6ha";
};
} // (args.argsOverride or { }))