summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.8/glib/default.nix
blob: 71fa047f04272b86517fc95af54d4e6bc33d6fb6 (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.8.5";
  src = fetchurl {
    url = ftp://ftp.gtk.org/pub/gtk/v2.8/glib-2.8.5.tar.bz2;
    md5 = "334bb6892fb05aa34eae53707cc2726e";
  };
  buildInputs = [pkgconfig gettext perl];
}