summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libbonobo.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-03-23 22:55:03 +0000
committerLudovic Courtès <ludo@gnu.org>2009-03-23 22:55:03 +0000
commitca43b547b3a1cc04c78f532de0e9f0d09541220e (patch)
tree9d7b752f8bb15dc4e19b0c3e5ad7ca7f09405558 /pkgs/desktops/gnome/libbonobo.nix
parent9845dc5aecb902fd78c8ef0b0c408cd5b6410685 (diff)
GNOME: Assorted fixes.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14674
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];
 }