* GTK 2.6 plus associated libraries.

* Updated libtiff, libpng, libxml2, libxslt, gettext.

svn path=/nixpkgs/trunk/; revision=2238
This commit is contained in:
Eelco Dolstra
2005-02-15 16:22:20 +00:00
parent e42507d182
commit aac8011c8b
12 changed files with 106 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
{stdenv, fetchurl, pkgconfig, glib, perl}:
assert pkgconfig != null && glib != null && perl != null;
stdenv.mkDerivation {
name = "atk-1.9.0";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/atk-1.9.0.tar.bz2;
md5 = "7f41bd9c6dcd83c8df391dc1805be653";
};
buildInputs = [pkgconfig perl];
propagatedBuildInputs = [glib];
}

View File

@@ -0,0 +1,23 @@
{ 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;
};
}

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl, pkgconfig, gettext, perl}:
assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.6.2";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/glib-2.6.2.tar.bz2;
md5 = "31fafaf9b1a96ab804c078fb965eb529";
};
buildInputs = [pkgconfig gettext perl];
}

View File

@@ -0,0 +1,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.2";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/gtk+-2.6.2.tar.bz2;
md5 = "f5cbbcb82627bc6d0d186063e6109399";
};
buildInputs = [pkgconfig perl libtiff libjpeg libpng];
propagatedBuildInputs = [x11 glib atk pango];
inherit libtiff libjpeg libpng;
}

View File

@@ -0,0 +1,14 @@
{stdenv, fetchurl, pkgconfig, x11, glib}:
assert pkgconfig != null && x11 != null && glib != null;
assert x11.buildClientLibs;
stdenv.mkDerivation {
name = "pango-1.8.0";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/pango-1.8.0.tar.bz2;
md5 = "d11f9857df7216321163e14d66d0cab8";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [x11 glib];
}