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

linux: 5.4.247 -> 5.4.248

(cherry picked from commit bf2aa164604966cc2c22bf607c5e224dfb2dda7a)

authored by Maximilian Bosch and committed by github-actions[bot] 472c4e23 a143bc63

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.247"; 6 + version = "5.4.248"; 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 = "1mzyzxfsqp085qx17wp9xz7z4w79kks0jpdba7mx8k9i097hs09k"; 16 + sha256 = "0d9yn51rg59k39h0w6wmvjqz9n7najm9x8yb79rparbcwwrd3gis"; 17 17 }; 18 18 } // (args.argsOverride or {}))