about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.6/glib/default.nix
blob: c566ad9e1258364c9b24fdce0f65c1d9eeff440b (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.3";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/glib-2.6.3.tar.bz2;
    md5 = "8f69ad5387197114b356efc64ce88d77";
  };
  buildInputs = [pkgconfig gettext perl];
}