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

linux: 4.4.168 -> 4.4.169

(cherry picked from commit 54ce2e016b338e47632b8f35c19987823c95d6e6)

Changed files
+2 -2
pkgs
os-specific
linux
kernel
+2 -2
pkgs/os-specific/linux/kernel/linux-4.4.nix
··· 1 1 { stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.4.168"; 4 + version = "4.4.169"; 5 5 extraMeta.branch = "4.4"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "0zhmhccwki1r7p99ap772p3bknl4hm6zfwvzk97nas42anqc0ylg"; 9 + sha256 = "1aah2qmifj15kcck4m6p00zz0d80afs22bg44y3n4l926f0b1w86"; 10 10 }; 11 11 } // (args.argsOverride or {}))