4b24c008d7
release management!) and pango needs libpng svn path=/nixpkgs/trunk/; revision=5575
27 lines
601 B
Nix
27 lines
601 B
Nix
{ xineramaSupport ? false
|
|
, stdenv, fetchurl, pkgconfig, gettext, perl, x11
|
|
, libtiff, libjpeg, libpng, cairo, libXinerama ? null, libXrandr
|
|
}:
|
|
|
|
rec {
|
|
|
|
glib = (import ./glib) {
|
|
inherit fetchurl stdenv pkgconfig gettext perl;
|
|
};
|
|
|
|
atk = (import ./atk) {
|
|
inherit fetchurl stdenv pkgconfig glib perl;
|
|
};
|
|
|
|
pango = (import ./pango) {
|
|
inherit fetchurl stdenv pkgconfig glib x11 cairo libpng;
|
|
};
|
|
|
|
gtk = (import ./gtk+) {
|
|
inherit fetchurl stdenv pkgconfig glib atk pango perl
|
|
libtiff libjpeg libpng x11 cairo libXinerama
|
|
xineramaSupport libXrandr;
|
|
};
|
|
|
|
}
|