1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/development/libraries/gtk+-1/default.nix
Eelco Dolstra 0233bc614d * Factor groups of strongly related packages out of
`all-packages-generic.nix'.

svn path=/nixpkgs/trunk/; revision=913
2004-04-05 13:34:13 +00:00

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;
};
}