summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/xfconf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce-4.6/core/xfconf.nix')
-rw-r--r--pkgs/desktops/xfce-4.6/core/xfconf.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4.6/core/xfconf.nix b/pkgs/desktops/xfce-4.6/core/xfconf.nix
new file mode 100644
index 000000000000..b4c14ef043e2
--- /dev/null
+++ b/pkgs/desktops/xfce-4.6/core/xfconf.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, libxfce4util, dbus_glib }:
+
+stdenv.mkDerivation rec {
+  name = "xfconf-4.6.2";
+  
+  src = fetchurl {
+    url = "http://www.xfce.org/archive/xfce/4.6.2/src/${name}.tar.bz2";
+    sha1 = "2b9656a1b7f323d2600ddc929191afb50c8018f8";
+  };
+
+  buildInputs = [ pkgconfig intltool glib libxfce4util ];
+
+  propagatedBuildInputs = [ dbus_glib ];
+
+  meta = {
+    homepage = http://www.xfce.org/;
+    description = "Simple client-server configuration storage and query system for Xfce";
+    license = "GPLv2";
+  };
+}