about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/gtk+/default.nix
blob: b2defd1431c5ce37ede909f36bd458d927233853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, x11, glib, atk
, pango, perl, libtiff, libjpeg, libpng}:

assert pkgconfig != null && x11 != null && glib != null && atk != null
  && pango != null && perl != null && perl != null && libtiff != null
  && libjpeg != null && libpng != null;
assert x11.buildClientLibs;
#assert glib == atk.glib;
#assert glib == pango.glib;
#assert x11 == pango.x11;

stdenv.mkDerivation {
  name = "gtk+-2.6.4";
  src = fetchurl {
    url = http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.6/gtk+-2.6.4.tar.bz2;
    md5 = "4749fce7b082b784a71a076aa586dc25";
  };
  buildInputs = [pkgconfig perl libtiff libjpeg libpng];
  propagatedBuildInputs = [x11 glib atk pango];
  inherit libtiff libjpeg libpng;
}