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
908 B
Nix
33 lines
908 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk, intltool, libglade, libxfce4util
|
|
, libxfce4ui, xfconf, libwnck, libstartup_notification, xorg }:
|
|
let
|
|
p_name = "xfwm4";
|
|
ver_maj = "4.12";
|
|
ver_min = "3";
|
|
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 = "f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk libglade libxfce4util libxfce4ui xfconf
|
|
libwnck libstartup_notification
|
|
xorg.libXcomposite xorg.libXfixes xorg.libXdamage
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.xfce.org/projects/xfwm4;
|
|
description = "Window manager for Xfce";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|
|
|