e979d7ad2f
Major Xfce refactoring, also adding versions 4.10.* Signed-off-by: Vladimír Čunát <vcunat@gmail.com>
21 lines
664 B
Nix
21 lines
664 B
Nix
{ 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 ];
|
|
};
|
|
}
|