Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

linux: 5.4.248 -> 5.4.249

(cherry picked from commit 540219fde7a27f67988de9b1d7ff08301b0cf73b)

Changed files
+2 -2
pkgs
os-specific
linux
kernel
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.248"; 6 + version = "5.4.249"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0d9yn51rg59k39h0w6wmvjqz9n7najm9x8yb79rparbcwwrd3gis"; 16 + sha256 = "079mylc5j7hk5xn59q3z2xydyh88pq7yipn67x3y7nvf5i35hm6w"; 17 17 }; 18 18 } // (args.argsOverride or {}))