summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/gnome-vfs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/gnome/gnome-vfs/default.nix')
-rw-r--r--pkgs/development/libraries/gnome/gnome-vfs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gnome/gnome-vfs/default.nix b/pkgs/development/libraries/gnome/gnome-vfs/default.nix
index cb119751f20e..75f9ed77a85d 100644
--- a/pkgs/development/libraries/gnome/gnome-vfs/default.nix
+++ b/pkgs/development/libraries/gnome/gnome-vfs/default.nix
@@ -1,5 +1,6 @@
-{input, stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
-, libbonobo, gnomemimedata, popt, perlXMLParser }:
+{ input, stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
+, libbonobo, gnomemimedata, popt, perlXMLParser, gettext, bzip2
+}:
 
 assert pkgconfig != null && perl != null && glib != null
   && libxml2 != null && GConf != null && libbonobo != null
@@ -7,10 +8,9 @@ assert pkgconfig != null && perl != null && glib != null
 
 stdenv.mkDerivation {
   inherit (input) name src;
-  builder = ./builder.sh;
   buildInputs = [
     pkgconfig perl glib libxml2 GConf libbonobo
-    gnomemimedata popt perlXMLParser
+    gnomemimedata popt perlXMLParser gettext bzip2
   ];
   patches = [./no-kerberos.patch];
 }