cross: support gnome-maps

This commit is contained in:
Colin 2023-10-02 04:06:34 +00:00
parent bc7dee6a80
commit 09ed98c973

View File

@ -694,6 +694,13 @@ in {
# fixes "configure.ac:374: error: possibly undefined macro: AM_PATH_LIBGCRYPT"
nativeBuildInputs = orig.nativeBuildInputs ++ [ final.libgcrypt final.openssh final.glib ];
});
gnome-maps = super.gnome-maps.overrideAttrs (upstream: {
# fixes: "ERROR: Program 'gjs' not found or not executable"
postPatch = (upstream.postPatch or "") + ''
substituteInPlace meson.build \
--replace "find_program('gjs')" "find_program('${final.gjs}/bin/gjs')"
'';
});
# fixes: "Program gdbus-codegen found: NO"
# gnome-remote-desktop = mvToNativeInputs [ final.glib ] super.gnome-remote-desktop;
# gnome-shell = super.gnome-shell.overrideAttrs (orig: {