summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2.28/default.nix
blob: f25a6064285459c2b26a10d95b276d2c5b00e517 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
pkgs:

rec {

  inherit (pkgs.gtkLibs) glib pango atk gtk gtkmm;

  # Backward compatibility.
  gnomevfs = gnome_vfs;
  startupnotification = startup_notification;
  gnomedocutils = gnome_doc_utils;
  gnomeicontheme = gnome_icon_theme;

  # !!! Missing! Need to add these.
  libgnomeprintui = throw "libgnomeprintui not implemented";
  gtksourceview_24 = gtksourceview;


#### PLATFORM

  audiofile = import ./platform/audiofile {
    inherit (pkgs) stdenv fetchurl;
  };

  esound = import ./platform/esound {
    inherit (pkgs) stdenv fetchurl pkgconfig alsaLib;
    inherit audiofile;
  };
  
  libIDL = import ./platform/libIDL {
    inherit (pkgs) stdenv fetchurl flex bison pkgconfig;
    inherit (pkgs.gtkLibs) glib;
  };
  
  ORBit2 = import ./platform/ORBit2 {
    inherit (pkgs) stdenv fetchurl pkgconfig;
    inherit (pkgs.gtkLibs) glib;
    inherit libIDL;
  };
  
  libart_lgpl = import ./platform/libart_lgpl {
    inherit (pkgs) stdenv fetchurl;
  };
  
  libglade = import ./platform/libglade {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 python gettext;
    inherit (pkgs.gtkLibs) gtk;
  };

  libgnomeprint = import ./platform/libgnomeprint {
    inherit intltool libart_lgpl libgnomecups;
    inherit (pkgs) stdenv fetchurl pkgconfig gettext libxml2 bison flex;
    inherit (pkgs.gtkLibs) gtk;
  };

  libgnomecups = import ./platform/libgnomecups {
    inherit intltool libart_lgpl;
    inherit (pkgs) stdenv fetchurl pkgconfig gettext libxml2;
    inherit (pkgs.gtkLibs) gtk;
  };

  libgtkhtml = import ./platform/libgtkhtml {
    inherit (pkgs) stdenv fetchurl pkgconfig gettext libxml2;
    inherit (pkgs.gtkLibs) gtk;
  };
  
  intltool = import ./platform/intltool {
    inherit (pkgs) stdenv fetchurl pkgconfig perl perlXMLParser gettext;
  };
  
  GConf = import ./platform/GConf {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxml2 policykit;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool ORBit2;
    dbus_libs = pkgs.dbus.libs;
  };

  libgnomecanvas = import ./platform/libgnomecanvas {
    inherit (pkgs) stdenv fetchurl pkgconfig;
    inherit (pkgs.gtkLibs) gtk;
    inherit intltool libart_lgpl libglade;
  };

  # for git-head builds
  gnome_common = import platform/gnome-common {
    inherit (pkgs) stdenv fetchgit pkgconfig
      autoconf automake libtool;
  };
  
  gnome_mime_data = import ./platform/gnome-mime-data {
    inherit (pkgs) stdenv fetchurl;
    inherit intltool;
  };
  
  gnome_vfs = import ./platform/gnome-vfs {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 bzip2 openssl samba dbus_glib fam hal cdparanoia;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool GConf gnome_mime_data;
  };
  
  gnome_vfs_monikers = import ./platform/gnome-vfs-monikers {
    inherit (pkgs) stdenv fetchurl pkgconfig;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool gnome_vfs libbonobo ORBit2;
  };
  
  libgnome = import ./platform/libgnome {
    inherit (pkgs) stdenv fetchurl pkgconfig popt zlib;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool esound libbonobo GConf gnome_vfs ORBit2;
  };
  
  libgnomeui = import ./platform/libgnomeui {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 xlibs;
    inherit intltool libgnome libgnomecanvas libbonoboui GConf;
    inherit gnome_vfs gnome_keyring libglade glib pango;
  };
  
  libbonobo = import ./platform/libbonobo {
    inherit (pkgs) stdenv fetchurl flex bison pkgconfig dbus_glib libxml2 popt;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool ORBit2;
  };
  
  libbonoboui = import ./platform/libbonoboui {
    inherit (pkgs) stdenv fetchurl bison pkgconfig popt libxml2;
    inherit intltool libbonobo GConf libgnomecanvas libgnome libglade gtk;
  };
  
  at_spi = import ./platform/at-spi {
    inherit (pkgs) stdenv fetchurl python pkgconfig popt;
    inherit (pkgs.xlibs) libX11 libICE libXtst libXi;
    inherit (pkgs.gtkLibs) atk gtk;
    inherit intltool libbonobo ORBit2;
  };

  gtk_doc = import ./platform/gtk-doc {
    inherit (pkgs) stdenv fetchurl pkgconfig perl python libxml2 libxslt;
    inherit (pkgs) docbook_xml_dtd_43 docbook_xsl;
    inherit gnome_doc_utils;
  };

  # What name should we use??
  gtkdoc = gtk_doc; 

  gtkhtml = import ./platform/gtkhtml {
    inherit (pkgs.gtkLibs) gtk;
    inherit (pkgs) fetchurl stdenv pkgconfig intltool enchant isocodes;
    inherit GConf gnome_icon_theme;
  };

  
  # Freedesktop library
  startup_notification = import ./platform/startup-notification {
    inherit (pkgs) stdenv fetchurl pkgconfig xlibs;
  };
  
  # Required for nautilus
  libunique = import ./platform/libunique {
    inherit (pkgs) stdenv fetchurl pkgconfig gettext;
    inherit (pkgs.gtkLibs) gtk;
  };
  
  gtkglext = import ./platform/gtkglext {
    inherit (pkgs) stdenv fetchurl mesa pkgconfig;
    inherit (pkgs.gtkLibs) gtk pango;
  };

#### DESKTOP

  gnome_keyring = import ./desktop/gnome-keyring {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus libgcrypt libtasn1 pam hal python;
    inherit (pkgs.gtkLibs) glib gtk;
    inherit intltool GConf;
  };
  
  libsoup = import ./desktop/libsoup {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite curl;
    inherit (pkgs.gtkLibs) glib;
    inherit GConf gnome_keyring;
  };

  libwnck = import ./desktop/libwnck {
    inherit (pkgs) stdenv fetchurl pkgconfig;
    inherit (pkgs.xlibs) libX11;
    inherit (pkgs.gtkLibs) gtk;
    inherit intltool;
  };
  
  # Not part of GNOME desktop, but provides CSS support for librsvg
  libcroco = import ./desktop/libcroco {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2;
    inherit (pkgs.gtkLibs) glib;
  };
  
  librsvg = import ./desktop/librsvg {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 libgsf bzip2;
    inherit (pkgs.gtkLibs) glib gtk;
    inherit libcroco;
  };
  
  libgweather = import ./desktop/libgweather {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2;
    inherit (pkgs.gtkLibs) gtk;
    inherit intltool GConf libsoup;
  };
  
  gvfs = import ./desktop/gvfs {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus samba hal libarchive fuse libgphoto2 cdparanoia libxml2 libtool;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool GConf gnome_keyring libsoup;
  };
  
  libgnomekbd = import ./desktop/libgnomekbd {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxklavier;
    inherit (pkgs.gtkLibs) glib gtk;
    inherit intltool GConf libglade;
  };
  
  # Removed from recent GNOME releases, but still required
  scrollkeeper = import ./desktop/scrollkeeper {
    inherit (pkgs) stdenv fetchurl pkgconfig perl perlXMLParser libxml2 libxslt docbook_xml_dtd_42;
  };
  
  gnome_doc_utils = import ./desktop/gnome-doc-utils {
    inherit (pkgs) stdenv fetchurl python pkgconfig libxslt
      makeWrapper;
    inherit intltool scrollkeeper;
    libxml2 = pkgs.libxml2Python;
  };
  
  zenity = import ./desktop/zenity {
    inherit (pkgs) stdenv fetchurl pkgconfig cairo libxml2 libxslt;
    inherit (pkgs.gtkLibs) glib gtk pango atk;
    inherit gnome_doc_utils intltool libglade;
    inherit (pkgs.xlibs) libX11;
  };
  
  metacity = import ./desktop/metacity {
    inherit (pkgs) stdenv fetchurl pkgconfig libcanberra;
    inherit (pkgs.gtkLibs) glib gtk;
    inherit (pkgs.xlibs) libXcomposite libXcursor libXdamage;
    inherit intltool GConf startup_notification zenity gnome_doc_utils;
  };

  gnome_menus = import ./desktop/gnome-menus {
    inherit (pkgs) stdenv fetchurl pkgconfig python;
    inherit (pkgs.gtkLibs) glib;
    inherit intltool;
  };
  
  gnome_desktop = import ./desktop/gnome-desktop {
    inherit (pkgs) stdenv fetchurl pkgconfig python libxslt which;
    libxml2 = pkgs.libxml2Python;
    inherit (pkgs.xlibs) libX11;
    inherit (pkgs.gtkLibs) gtk;
    inherit intltool GConf gnome_doc_utils;
  };
    
  gnome_panel = import ./desktop/gnome-panel {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib dbus cairo popt which bzip2 python libxslt;
    libxml2 = pkgs.libxml2Python;
    inherit (pkgs.gtkLibs) glib gtk pango atk;
    inherit (pkgs.xlibs) libXau;
    inherit intltool ORBit2 libglade libgnome libgnomeui libbonobo libbonoboui GConf gnome_menus gnome_desktop;
    inherit libwnck librsvg libgweather gnome_doc_utils libgnomecanvas libart_lgpl;
  };
  
  gnome_session = import ./desktop/gnome-session {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib cairo dbus;
    inherit (pkgs.gtkLibs) gtk pango atk;
    inherit (pkgs.xlibs) libXau libXtst inputproto;
    inherit intltool libglade startup_notification GConf;
  };
  
  gnome_settings_daemon = import ./desktop/gnome-settings-daemon {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxklavier;
    inherit (pkgs.gtkLibs) gtk;
    inherit intltool GConf gnome_desktop libglade libgnomekbd;
  };
  
  gnome_control_center = import ./desktop/gnome-control-center {
    inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxklavier hal libtool bzip2;
    inherit (pkgs) cairo popt which python libxslt shared_mime_info desktop_file_utils;
    inherit (pkgs.gtkLibs) glib gtk pango atk;
    inherit gnome_doc_utils intltool GConf libglade libgnome libgnomeui libgnomekbd libunique;
    inherit librsvg gnome_menus gnome_desktop gnome_panel metacity gnome_settings_daemon;
    inherit libbonobo libbonoboui libgnomecanvas libart_lgpl gnome_vfs ORBit2;
    libxml2 = pkgs.libxml2Python;
  };

  gtksourceview = import ./desktop/gtksourceview {
    inherit (pkgs) stdenv fetchurl pkgconfig cairo perl intltool
      gettext;
    inherit (pkgs.gtkLibs) atk glib gtk pango;
    libxml2 = pkgs.libxml2Python;
  };
  
  nautilus = import ./desktop/nautilus {
    inherit (pkgs) stdenv fetchurl pkgconfig libxml2 dbus_glib libexif shared_mime_info;
    inherit (pkgs.gtkLibs) gtk;
    inherit gnome_desktop libunique intltool GConf;
  };

  gnome_icon_theme = import ./desktop/gnome-icon-theme {
    inherit (pkgs) stdenv fetchurl pkgconfig intltool iconnamingutils;
  };

  vte = import ./desktop/vte {
    inherit (pkgs) stdenv fetchurl pkgconfig ncurses python;
    inherit intltool glib gtk;
  };
  
#### BINDINGS

  libglademm = import ./bindings/libglademm {
    inherit (pkgs) stdenv fetchurl pkgconfig intltool;
    inherit gtkmm libglade;
  };

}