summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libbonobo.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/libbonobo.nix')
-rw-r--r--pkgs/desktops/gnome/libbonobo.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome/libbonobo.nix b/pkgs/desktops/gnome/libbonobo.nix
index 5a4bdf5f95809..0b7d949247e8b 100644
--- a/pkgs/desktops/gnome/libbonobo.nix
+++ b/pkgs/desktops/gnome/libbonobo.nix
@@ -1,4 +1,6 @@
-{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, ORBit2, libxml2, popt, yacc, flex, gettext}:
+{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
+, dbus, dbus_glib, ORBit2, libxml2
+, popt, yacc, flex, gettext, intltool }:
 
 assert pkgconfig != null && perl != null && ORBit2 != null
   && libxml2 != null && popt != null && yacc != null && flex != null;
@@ -6,6 +8,10 @@ assert pkgconfig != null && perl != null && ORBit2 != null
 # todo 2.8.1 doesn;t work
 stdenv.mkDerivation {
   inherit (input) name src;
-  buildInputs = [pkgconfig perl perlXMLParser libxml2 yacc flex gettext];
+  buildInputs = [
+    pkgconfig perl perlXMLParser libxml2 yacc flex
+    dbus dbus_glib
+    gettext intltool
+  ];
   propagatedBuildInputs = [ORBit2 popt];
 }