about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/gajim
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-07-26 20:53:32 +0200
committerVladimír Čunát <v@cunat.cz>2023-07-26 20:53:32 +0200
commit1c0d654684ac1e98fbfa2a77c7f769b8b52a4ecf (patch)
tree7c34a14bff63bd04863ca04abace06861531b68c /pkgs/applications/networking/instant-messengers/gajim
parente8f8e5829f9a25c2caee147cd74fb47222897314 (diff)
parent9999bf7a21105486d44b759f56fd1a05fb312d9e (diff)
Merge #239191: treewide: gobject-introspection from buildInputs to nativeBuildInputs
...into staging
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/gajim')
-rw-r--r--pkgs/applications/networking/instant-messengers/gajim/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix
index 4fc1a9d352e86..3e6fa0d92499d 100644
--- a/pkgs/applications/networking/instant-messengers/gajim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix
@@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec {
   format = "pyproject";
 
   buildInputs = [
-    gobject-introspection gtk3 gnome.adwaita-icon-theme
+    gtk3 gnome.adwaita-icon-theme
     gtksourceview4
     glib-networking
   ] ++ lib.optionals enableJingle [ farstream gstreamer gst-plugins-base gst-libav gst-plugins-good libnice ]
@@ -41,7 +41,7 @@ python3.pkgs.buildPythonApplication rec {
     ++ lib.optional enableAppIndicator libappindicator-gtk3;
 
   nativeBuildInputs = [
-    gettext wrapGAppsHook
+    gettext wrapGAppsHook gobject-introspection
   ];
 
   dontWrapGApps = true;