nixpkgs/pkgs/development/libraries/cairo/default.nix
Eelco Dolstra 12f0f1ad20 * Updated a few packages.
svn path=/nixpkgs/trunk/; revision=5246
2006-05-01 17:57:42 +00:00

27 lines
667 B
Nix

{ postscriptSupport ? true
, pdfSupport ? true
, pngSupport ? true
, stdenv, fetchurl, pkgconfig, x11, fontconfig, freetype
, zlib, libpng
}:
assert postscriptSupport -> zlib != null;
assert pngSupport -> libpng != null;
stdenv.mkDerivation {
name = "cairo-1.0.2";
src = fetchurl {
url = http://cairographics.org/releases/cairo-1.0.4.tar.gz;
sha1 = "89e72202e5b51a8914fce60f52f7c51ecdea982a";
};
buildInputs = [
pkgconfig x11 fontconfig freetype
(if pngSupport then libpng else null)
];
propagatedBuildInputs = [
(if postscriptSupport then zlib else null)
];
configureFlags =
(if pdfSupport then ["--enable-pdf"] else []);
}