summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.4/glib/default.nix
blob: 58f91b3f83c5fa3fc56612a76640d0f6d3104caa (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.4.7";
  src = fetchurl {
    url = ftp://ftp.gtk.org/pub/gtk/v2.4/glib-2.4.7.tar.bz2;
    md5 = "eff6fec89455addf8b0dee5a19e343be";
  };
  buildInputs = [pkgconfig gettext perl];
}