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, 0 insertions, 20 deletions
diff --git a/pkgs/desktops/xfce/core/xfce-utils.nix b/pkgs/desktops/xfce/core/xfce-utils.nix
deleted file mode 100644
index 625780adb313..000000000000
--- a/pkgs/desktops/xfce/core/xfce-utils.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ 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 ];
-  };
-}