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

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

  buildInputs =
    [ pkgconfig intltool gtk libxfce4util libxfce4ui libwnck dbus_glib
      xfconf xorg.iceauth xfce4panel
    ];

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