e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
15 lines
390 B
Nix
15 lines
390 B
Nix
{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://catamaran.labs.cs.uu.nl/dist/tarballs/pango-1.4.1.tar.bz2;
|
|
md5 = "39868e0da250fd4c00b2970e4eb84389";
|
|
};
|
|
buildInputs = [pkgconfig];
|
|
propagatedBuildInputs = [x11 glib];
|
|
}
|