ccache: Add meta.mainProgram to links

Inherit meta.mainProgram from unwrappedCC, which should have
meta.mainProgram set.

Fixes #437074

+4
+4
pkgs/by-name/cc/ccache/package.nix
··· 158 ln -s ${unwrappedCC}/$file $out/$file 159 done 160 ''; 161 }; 162 163 updateScript = nix-update-script { };
··· 158 ln -s ${unwrappedCC}/$file $out/$file 159 done 160 ''; 161 + 162 + meta = { 163 + inherit (unwrappedCC.meta) mainProgram; 164 + }; 165 }; 166 167 updateScript = nix-update-script { };