2011-08-23 00:51:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk, intltool, libxfce4util
|
|
|
|
, libxfce4ui, xfconf, libwnck, libstartup_notification, xorg }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-01-17 18:43:48 +01:00
|
|
|
name = "xfwm4-4.8.3";
|
2011-08-23 00:51:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://archive.xfce.org/src/xfce/xfwm4/4.8/${name}.tar.bz2";
|
2012-01-17 18:43:48 +01:00
|
|
|
sha1 = "6d27deca383e0c2fba0cede0bbe0e9aee18e9257";
|
2011-08-23 00:51:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig intltool gtk libxfce4util libxfce4ui xfconf
|
|
|
|
libwnck libstartup_notification
|
|
|
|
xorg.libXcomposite xorg.libXfixes xorg.libXdamage
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.xfce.org/;
|
|
|
|
description = "Window manager for Xfce";
|
|
|
|
license = "GPLv2+";
|
2011-09-06 01:30:26 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2011-08-23 00:51:23 +02:00
|
|
|
};
|
|
|
|
}
|