2009-09-30 07:27:34 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus_glib, cairo, dbus, gtk, pango, atk, libXau, libXtst, inputproto
|
2012-03-08 23:45:28 +01:00
|
|
|
, intltool, libglade, startup_notification, GConf, upower }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-08 23:45:28 +01:00
|
|
|
name = "gnome-session-2.32.1";
|
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-08 23:45:28 +01:00
|
|
|
url = mirror://gnome/sources/gnome-session/2.32/gnome-session-2.32.1.tar.bz2;
|
|
|
|
sha256 = "0sk8qclarpar27va1ahzwjh2wsafys0xsdjzdg7cgygw6gj3rn92";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 23:45:28 +01:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ dbus_glib gtk libXau libXtst inputproto libglade startup_notification
|
|
|
|
GConf upower
|
|
|
|
];
|
|
|
|
buildNativeInputs = [ pkgconfig intltool ];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|