nixpkgs/pkgs/desktops/gnome-2/desktop/gnome-session/default.nix

21 lines
631 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, dbus_glib, cairo, dbus, gtk, pango, atk, libXau, libXtst, inputproto
2016-09-12 00:32:10 +02:00
, intltool, libglade, startup_notification, GConf, upower, libSM }:
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
2016-09-12 00:32:10 +02:00
GConf upower libSM
];
nativeBuildInputs = [ pkgconfig intltool ];
2016-09-12 00:32:10 +02:00
# gconf-sanity-check-2 not found
meta.broken = true;
}