0032a3245e
svn path=/nixpkgs/branches/stdenv-updates/; revision=10473
17 lines
292 B
Nix
17 lines
292 B
Nix
{stdenv, fetchurl, x11, libtiff, libjpeg, libpng}:
|
|
|
|
rec {
|
|
|
|
glib = (import ./glib) {
|
|
inherit fetchurl stdenv;
|
|
};
|
|
|
|
gtk = (import ./gtk+) {
|
|
inherit fetchurl stdenv x11 glib;
|
|
};
|
|
|
|
gdkpixbuf = (import ./gdk-pixbuf) {
|
|
inherit fetchurl stdenv gtk libtiff libjpeg libpng;
|
|
};
|
|
|
|
} |