summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/desktop/gnome-session/default.nix
blob: 7678cb3a4b426a7806e516f313c622bb57d8d044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, dbus_glib, cairo, dbus, gtk, pango, atk, libXau, libXtst, inputproto
, 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
      GConf upower libSM
    ];
  nativeBuildInputs = [ pkgconfig intltool ];

  # gconf-sanity-check-2 not found
  meta.broken = true;
}