about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/libxfce4util.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce/core/libxfce4util.nix')
-rw-r--r--pkgs/desktops/xfce/core/libxfce4util.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/libxfce4util.nix b/pkgs/desktops/xfce/core/libxfce4util.nix
new file mode 100644
index 000000000000..6b16d890a3e0
--- /dev/null
+++ b/pkgs/desktops/xfce/core/libxfce4util.nix
@@ -0,0 +1,14 @@
+{ v, h, stdenv, fetchXfce, pkgconfig, glib, intltool }:
+
+stdenv.mkDerivation rec {
+  name = "libxfce4util-${v}";
+  src = fetchXfce.core name h;
+
+  buildInputs = [ pkgconfig glib intltool ];
+
+  meta = {
+    homepage = http://www.xfce.org/projects/libxfce4;
+    description = "Basic utility non-GUI functions for Xfce";
+    license = "bsd";
+  };
+}