2009-09-30 06:27:34 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus_glib, cairo, dbus, gtk, pango, atk, libXau, libXtst, inputproto
|
2016-09-11 23:32:10 +01:00
|
|
|
, intltool, libglade, startup_notification, GConf, upower, libSM }:
|
2009-09-30 06:27:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-08 22:45:28 +00:00
|
|
|
name = "gnome-session-2.32.1";
|
|
|
|
|
2009-09-30 06:27:34 +01:00
|
|
|
src = fetchurl {
|
2012-03-08 22:45:28 +00:00
|
|
|
url = mirror://gnome/sources/gnome-session/2.32/gnome-session-2.32.1.tar.bz2;
|
|
|
|
sha256 = "0sk8qclarpar27va1ahzwjh2wsafys0xsdjzdg7cgygw6gj3rn92";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2012-03-08 22:45:28 +00:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ dbus_glib gtk libXau libXtst inputproto libglade startup_notification
|
2016-09-11 23:32:10 +01:00
|
|
|
GConf upower libSM
|
2012-03-08 22:45:28 +00:00
|
|
|
];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2016-09-11 23:32:10 +01:00
|
|
|
|
|
|
|
# gconf-sanity-check-2 not found
|
|
|
|
meta.broken = true;
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|