From 4e7dffa1321cacc93739f8c7df165d8076f0a1fb Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine Date: Fri, 18 Apr 2025 11:39:00 +0200 Subject: [PATCH] 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. --- pkgs/by-name/co/codechecker/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/co/codechecker/package.nix b/pkgs/by-name/co/codechecker/package.nix index c39f58b3a783..110f262805ca 100644 --- a/pkgs/by-name/co/codechecker/package.nix +++ b/pkgs/by-name/co/codechecker/package.nix @@ -123,5 +123,6 @@ python3Packages.buildPythonApplication rec { felixsinger ]; mainProgram = "CodeChecker"; + platforms = platforms.darwin ++ platforms.linux; }; }