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