caribou: fix strictDeps build, mark cross as broken

This commit is contained in:
FliegendeWurst 2025-01-08 12:32:19 +01:00
parent d9e9853753
commit e69f0c5c4b

View file

@ -6,6 +6,7 @@
gnome,
glib,
gtk3,
gobject-introspection,
clutter,
dbus,
python3,
@ -61,9 +62,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkg-config
gobject-introspection
intltool
libxslt
libxml2
pythonEnv
autoreconfHook
wrapGAppsHook3
vala
@ -109,5 +112,8 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21;
maintainers = [ ];
platforms = platforms.linux;
# checking for a Python interpreter with version >= 2.4... none
# configure: error: no suitable Python interpreter found
broken = stdenv.buildPlatform != stdenv.hostPlatform;
};
}