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