about summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4/core/libxfce4util.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce-4/core/libxfce4util.nix')
-rw-r--r--pkgs/desktops/xfce-4/core/libxfce4util.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4/core/libxfce4util.nix b/pkgs/desktops/xfce-4/core/libxfce4util.nix
new file mode 100644
index 000000000000..e6565467e4c3
--- /dev/null
+++ b/pkgs/desktops/xfce-4/core/libxfce4util.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl, pkgconfig, glib, intltool }:
+
+stdenv.mkDerivation rec {
+  name = "libxfce4util-4.6.2";
+  
+  src = fetchurl {
+    url = "http://www.xfce.org/archive/xfce-4.6.2/src/${name}.tar.bz2";
+    sha256 = "10wcw7r8cjb0farffic037pcjr5bwrjrm8s3jrcb7c0b038pwbmf";
+  };
+
+  buildInputs = [ pkgconfig glib intltool ];
+
+  meta = {
+    homepage = http://www.xfce.org/;
+    description = "Basic utility non-GUI functions for Xfce";
+    license = "GPLv2";
+  };
+}