mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
a1ddfbc3a5
svn path=/nixpkgs/trunk/; revision=914
23 lines
467 B
Nix
23 lines
467 B
Nix
{ stdenv, fetchurl, pkgconfig, gettext, perl, x11
|
|
, libtiff, libjpeg, libpng}:
|
|
|
|
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;
|
|
};
|
|
|
|
gtk = (import ./gtk+) {
|
|
inherit fetchurl stdenv pkgconfig glib atk pango perl
|
|
libtiff libjpeg libpng x11;
|
|
};
|
|
|
|
}
|