-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
geary: fix cross compilation #366636
geary: fix cross compilation #366636
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,12 +56,10 @@ stdenv.mkDerivation rec { | |
}; | ||
|
||
nativeBuildInputs = [ | ||
appstream-glib | ||
desktop-file-utils | ||
gettext | ||
gobject-introspection | ||
itstool | ||
libxml2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was here for glib tools stop complaining at build time:
|
||
meson | ||
ninja | ||
pkg-config | ||
|
@@ -72,6 +70,7 @@ stdenv.mkDerivation rec { | |
|
||
buildInputs = [ | ||
adwaita-icon-theme | ||
appstream-glib | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I can understand https://gitlab.gnome.org/GNOME/geary/-/issues/439, the dependency is only needed for Additionally, appstream-glib is no longer maintained and Opened https://gitlab.gnome.org/GNOME/geary/-/merge_requests/856, though it is hard to test because glib propagates gettext, which also has |
||
enchant2 | ||
folks | ||
gcr | ||
|
@@ -91,6 +90,7 @@ stdenv.mkDerivation rec { | |
libsecret | ||
libunwind | ||
libstemmer | ||
libxml2 | ||
libytnef | ||
sqlite | ||
webkitgtk_4_1 | ||
|
@@ -109,6 +109,8 @@ stdenv.mkDerivation rec { | |
"-Dcontractor=enabled" # install the contractor file (Pantheon specific) | ||
]; | ||
|
||
strictDeps = true; | ||
|
||
# NOTE: Remove `build-auxyaml_to_json.py` when no longer needed, see: | ||
# https://gitlab.gnome.org/GNOME/geary/commit/f7f72143e0f00ca5e0e6a798691805c53976ae31#0cc1139e3347f573ae1feee5b73dbc8a8a21fcfa | ||
postPatch = '' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was here for appstream-util, though it is only required to optionally validate the metainfo file, which is not something we want to do in the build anyway.