buildFHSEnvBubblewrap: set meta.mainProgram

This commit is contained in:
Ulysses Zhan 2024-11-23 11:09:55 -08:00
parent 40c579ca29
commit e6199124df
No known key found for this signature in database
GPG Key ID: 36F32687C05F4986

View File

@ -321,7 +321,7 @@ runCommandLocal name
(
nameAttrs
// {
inherit nativeBuildInputs meta;
inherit nativeBuildInputs;
passthru = passthru // {
env =
@ -337,6 +337,10 @@ runCommandLocal name
'';
inherit args fhsenv;
};
meta = {
mainProgram = executableName;
} // meta;
}
)
''