04c7506f0f
- The split was only done where it seemed that some parts aren't really needed, which were mainly headers and gtk-doc. - Update style to be closer with what's common in nixpkgs. - Change explicit removal of icon theme cache into including the hicolor theme.
33 lines
1 KiB
Nix
33 lines
1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util, libxfce4ui
|
|
, libglade, xfconf, xorg, libwnck, libnotify, libxklavier, garcon, upower }:
|
|
let
|
|
p_name = "xfce4-settings";
|
|
ver_maj = "4.12";
|
|
ver_min = "0";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "108za1cmjslwzkdl76x9kwxkq8z734kg9nz8rxk057f10pqwxgh4";
|
|
};
|
|
|
|
patches = [ ./xfce4-settings-default-icon-theme.patch ];
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool exo gtk libxfce4util libxfce4ui libglade upower
|
|
xfconf xorg.libXi xorg.libXcursor libwnck libnotify libxklavier garcon
|
|
]; #TODO: optional packages
|
|
|
|
configureFlags = [ "--enable-pluggable-dialogs" "--enable-sound-settings" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.xfce.org/projects/xfce4-settings;
|
|
description = "Settings manager for Xfce";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|
|
|