Merge #235610: cc-wrapper: try to better guess meta.mainProgram

This commit is contained in:
Vladimír Čunát 2023-06-11 09:11:13 +02:00
commit 944c7fa720
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -612,5 +612,6 @@ stdenv.mkDerivation {
lib.attrByPath ["meta" "description"] "System C compiler" cc_
+ " (wrapper script)";
priority = 10;
mainProgram = if name != "" then name else ccName;
};
}