summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfce-utils.nix
blob: 625780adb3139badd757a757b2b2ce5ccc4efa03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  };
}