summary refs log tree commit diff
path: root/pkgs/desktops/gnome/gconf-editor.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/gconf-editor.nix')
-rw-r--r--pkgs/desktops/gnome/gconf-editor.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome/gconf-editor.nix b/pkgs/desktops/gnome/gconf-editor.nix
new file mode 100644
index 00000000000..1da67ae0598
--- /dev/null
+++ b/pkgs/desktops/gnome/gconf-editor.nix
@@ -0,0 +1,14 @@
+{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
+, gettext, libxslt
+}:
+
+stdenv.mkDerivation {
+  inherit (input) name src;
+  
+  buildInputs = [
+    pkgconfig perl perlXMLParser gnome.GConf gnome.gnomedocutils
+    gnome.gtk gnome.libgnome gnome.libgnomeui gettext libxslt
+  ];
+
+  configureFlags = "--disable-scrollkeeper";
+}