lighthouse: mark cross as broken (#413838)

This commit is contained in:
Aleksana 2025-06-10 02:05:56 +08:00 committed by GitHub
commit 82271c268c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,6 +141,8 @@ rustPlatform.buildRustPackage rec {
pmw pmw
]; ];
mainProgram = "lighthouse"; mainProgram = "lighthouse";
broken = stdenv.hostPlatform.isDarwin; # can't compile build script with host libraries
broken =
stdenv.hostPlatform.isDarwin || !lib.systems.equals stdenv.buildPlatform stdenv.hostPlatform;
}; };
} }