summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/gtk+/default.nix
blob: a76303a758bfe2245ca143a534830ddc67ddd0cd (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.10";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/gtk+-2.6.10.tar.bz2;
    md5 = "520090ef291e35ba93397060e20f5025";
  };
  buildInputs = [pkgconfig perl libtiff libjpeg libpng];
  propagatedBuildInputs = [x11 glib atk pango];
  inherit libtiff libjpeg libpng;
}