f6e91bc9c9
svn path=/nixpkgs/trunk/; revision=2397
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.8.1";
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/pango-1.8.1.tar.bz2;
|
|
md5 = "88aa6bf1876766db6864f3b93577887c";
|
|
};
|
|
buildInputs = [pkgconfig];
|
|
propagatedBuildInputs = [x11 glib];
|
|
}
|