ccache: Add meta.mainProgram to links

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

Fixes #437074
This commit is contained in:
dramforever
2025-08-26 19:06:50 +08:00
parent d8d9ce6aa7
commit c9f8d474ff
+4
View File
@@ -158,6 +158,10 @@ stdenv.mkDerivation (finalAttrs: {
ln -s ${unwrappedCC}/$file $out/$file
done
'';
meta = {
inherit (unwrappedCC.meta) mainProgram;
};
};
updateScript = nix-update-script { };