about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/desktop/gnome-session/default.nix
blob: 8704d22d2f27c633818fae9519f597aa86326a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, pkgconfig, dbus_glib, cairo, dbus, gtk, pango, atk, libXau, libXtst, inputproto
, intltool, libglade, startup_notification, GConf, upower }:

stdenv.mkDerivation {
  name = "gnome-session-2.32.1";

  src = fetchurl {
    url = mirror://gnome/sources/gnome-session/2.32/gnome-session-2.32.1.tar.bz2;
    sha256 = "0sk8qclarpar27va1ahzwjh2wsafys0xsdjzdg7cgygw6gj3rn92";
  };

  buildInputs =
    [ dbus_glib gtk libXau libXtst inputproto libglade startup_notification
      GConf upower
    ];
  buildNativeInputs = [ pkgconfig intltool ];
}