summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/xfwm4.nix
blob: 7dc3c653909474dfe68efabdfbec2c3aee8c7a8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, pkgconfig, gtk, intltool, libxfce4util
, libxfce4ui, xfconf, libwnck, libstartup_notification, xorg }:

stdenv.mkDerivation rec {
  name = "xfwm4-4.8.1";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/xfwm4/4.8/${name}.tar.bz2";
    sha1 = "4075a689f572ae157ed80ab3ce5be85f09dac766";
  };

  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+";
  };
}