codechecker: restore the meta.platforms attribute

This commit reinstates the `meta.platforms` attribute, which was removed
in #395969 to facilitate building on Darwin. Removing this attribute to
enable builds on Darwin was a mistake, and this commit rectifies that
error.
This commit is contained in:
Thierry Delafontaine 2025-04-18 11:39:00 +02:00
parent 79b9620e82
commit 4e7dffa132
No known key found for this signature in database
GPG key ID: F28424F9874E6696

View file

@ -123,5 +123,6 @@ python3Packages.buildPythonApplication rec {
felixsinger
];
mainProgram = "CodeChecker";
platforms = platforms.darwin ++ platforms.linux;
};
}