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

linux: 4.19.248 -> 4.19.249

(cherry picked from commit 34fe04da8e4ee12c72e7481fa3ac6506657f826b)

Changed files
+2 -2
pkgs
os-specific
linux
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.248"; 6 + version = "4.19.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/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "0cdflfk6l13slw1cawpkhpjzbbnffcbyffrh29p9jg73pdqx23y4"; 16 + sha256 = "14aiypira32hsw7wy9bhdw9rvfn705r0sb4415n9pfvi091bsjyf"; 17 17 }; 18 18 } // (args.argsOverride or {}))