e0eb3828bc
* Updated GTK and friends to 2.8.x. svn path=/nixpkgs/trunk/; revision=4073
24 lines
487 B
Nix
24 lines
487 B
Nix
{ stdenv, fetchurl, pkgconfig, gettext, perl, x11
|
|
, libtiff, libjpeg, libpng, cairo
|
|
}:
|
|
|
|
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;
|
|
};
|
|
|
|
gtk = (import ./gtk+) {
|
|
inherit fetchurl stdenv pkgconfig glib atk pango perl
|
|
libtiff libjpeg libpng x11 cairo;
|
|
};
|
|
|
|
}
|