about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/glib/default.nix
blob: 49411a6edb6a3900c6890893518dd6fc608cac69 (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.4";
  src = fetchurl {
    url = ftp://ftp.gtk.org/pub/gtk/v2.6/glib-2.6.4.tar.bz2;
    md5 = "af7eeb8aae764ff763418471ed6eb93d";
  };
  buildInputs = [pkgconfig gettext perl];
}