about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/glib/default.nix
blob: 1dc3407a76e81daf2ef9720b0352d338a18eebe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, pkgconfig, gettext, perl}:

assert pkgconfig != null && gettext != null && perl != null;

stdenv.mkDerivation {
  name = "glib-2.6.6";
  src = fetchurl {
    url = ftp://ftp.gtk.org/pub/gtk/v2.6/glib-2.6.6.tar.bz2;
    md5 = "6e22b0639d314536f23ee118f29b43de";
  };
  buildInputs = [pkgconfig gettext perl];
}