summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/glib/default.nix
blob: 5857fa185f3ef301830bfc353d8925c5ce8e6dc0 (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 = http://nix.cs.uu.nl/dist/tarballs/glib-2.6.6.tar.bz2;
    md5 = "6e22b0639d314536f23ee118f29b43de";
  };
  buildInputs = [pkgconfig gettext perl];
}