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