linux: 5.14.6 -> 5.14.7

authored by TredwellGit and committed by Tim Steinbach 6e149861 afc93c11

+2 -2
+2 -2
pkgs/os-specific/linux/kernel/linux-5.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.14.6"; 6 + version = "5.14.7"; 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 = "1v6cicakpg0fdp74r2a4h46sj7rzpjdf4cscbr8y67kpd098r12l"; 16 + sha256 = "1avypasvic298823xzpzzkjbmfv9s8bjnmq92ri62qbakx23j9dg"; 17 17 }; 18 18 } // (args.argsOverride or { }))