2006-07-04 15:24:26 +02:00
|
|
|
{ xineramaSupport ? false
|
|
|
|
, stdenv, fetchurl, pkgconfig, gettext, perl, x11
|
2006-07-04 18:32:35 +02:00
|
|
|
, libtiff, libjpeg, libpng, cairo, libXinerama ? null, libXrandr
|
2006-07-04 15:24:26 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
|
|
glib = (import ./glib) {
|
|
|
|
inherit fetchurl stdenv pkgconfig gettext perl;
|
|
|
|
};
|
|
|
|
|
|
|
|
atk = (import ./atk) {
|
|
|
|
inherit fetchurl stdenv pkgconfig glib perl;
|
|
|
|
};
|
|
|
|
|
|
|
|
pango = (import ./pango) {
|
2006-07-04 18:32:35 +02:00
|
|
|
inherit fetchurl stdenv pkgconfig glib x11 cairo libpng;
|
2006-07-04 15:24:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
gtk = (import ./gtk+) {
|
|
|
|
inherit fetchurl stdenv pkgconfig glib atk pango perl
|
|
|
|
libtiff libjpeg libpng x11 cairo libXinerama
|
2006-07-04 18:32:35 +02:00
|
|
|
xineramaSupport libXrandr;
|
2006-07-04 15:24:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|