summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs-2.4/pango/default.nix
blob: bfd1e0be546b9645252d8364004d4390bc0f7eb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, pkgconfig, x11, glib}:

assert pkgconfig != null && x11 != null && glib != null;
assert x11.buildClientLibs;

stdenv.mkDerivation {
  name = "pango-1.4.1";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/pango-1.4.1.tar.bz2;
    md5 = "39868e0da250fd4c00b2970e4eb84389";
  };
  buildInputs = [pkgconfig];
  propagatedBuildInputs = [x11 glib];
}