nixpkgs/pkgs/development/libraries/gtk-libs-2.10/glib/default.nix
Eelco Dolstra cdad298040 * Cairo 1.4.4. This fixes some bad interaction with the latest
xorg-server (namely, BadMatch crashes in programs such as
  gtk-window-decorator in compiz).
* Some GTK updates while we're at it.

svn path=/nixpkgs/trunk/; revision=8617
2007-04-26 18:37:33 +00:00

13 lines
369 B
Nix

{stdenv, fetchurl, pkgconfig, gettext, perl}:
assert pkgconfig != null && gettext != null && perl != null;
stdenv.mkDerivation {
name = "glib-2.12.11"; # <- sic! gtk 2.10 needs glib 2.12
src = fetchurl {
url = ftp://ftp.gtk.org/pub/glib/2.12/glib-2.12.11.tar.bz2;
md5 = "077a9917b673a9a0bc63f351786dde24";
};
buildInputs = [pkgconfig gettext perl];
}