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

linux: 4.17.7 -> 4.17.8

(cherry picked from commit 8432dec854f7e9f622217671958a92b535dc0d51)

+2 -2
+2 -2
pkgs/os-specific/linux/kernel/linux-4.17.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.17.7"; 6 + version = "4.17.8"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "16bbvxr4ncql7sk505g81c0i3bichqz11dfvgaji57d1yaknx4k4"; 16 + sha256 = "0hkqypjgvr8lyskwk8z3dac8pyi4wappnk25508vs3fy08365h0k"; 17 17 }; 18 18 } // (args.argsOverride or {}))