about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfce-utils.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce/core/xfce-utils.nix')
-rw-r--r--pkgs/desktops/xfce/core/xfce-utils.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/xfce-utils.nix b/pkgs/desktops/xfce/core/xfce-utils.nix
new file mode 100644
index 000000000000..625780adb313
--- /dev/null
+++ b/pkgs/desktops/xfce/core/xfce-utils.nix
@@ -0,0 +1,20 @@
+{ v, h, stdenv, fetchXfce, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui, dbus_glib }:
+
+stdenv.mkDerivation rec {
+  name = "xfce-utils-${v}";
+  src = fetchXfce.core name h;
+
+  configureFlags = "--with-xsession-prefix=$(out)/share/xsessions --with-vendor-info=NixOS.org";
+
+  buildInputs = [ pkgconfig intltool gtk libxfce4util libxfce4ui dbus_glib ];
+
+  preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
+
+  meta = {
+    homepage = http://www.xfce.org/projects/xfce-utils;
+    description = "Utilities and scripts for Xfce";
+    license = "GPLv2+";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.eelco ];
+  };
+}