1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

linux: 4.14.260 -> 4.14.261

This commit is contained in:
TredwellGit 2022-01-07 21:59:50 +00:00
parent cc091b950c
commit ce05c553ad

View file

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "4.14.260";
version = "4.14.261";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "1bylxn6hsq17cann2w02ggz6xz3b3synrapcwlwfcfydf71hzj9f";
sha256 = "08s7idxpsjb29ccj0gkrj87xhbdqj9nc417qc7gd2kmbjd6amymz";
};
} // (args.argsOverride or {}))