summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/xfdesktop.nix
blob: 3742686d2e3dd5a17e0487bab769755331bd9f1b (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
{ stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, libxfce4util
, libxfce4ui, libwnck, xfconf, garcon, libnotify, exo }:

stdenv.mkDerivation rec {
  name = "xfdesktop-4.8.2";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/xfdesktop/4.8/${name}.tar.bz2";
    sha1 = "fe7d71bb502197b0353b952947826a5a50ab13bc";
  };

  buildInputs =
    [ pkgconfig intltool gtk dbus_glib libxfce4util libxfce4ui libwnck xfconf
      garcon libnotify exo
    ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.xfce.org/;
    description = "Xfce desktop manager";
    license = "GPLv2+";
  };
}