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

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

  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+";
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.eelco ];
  };
}