summary refs log tree commit diff
path: root/pkgs/development/libraries/cairo/default.nix
blob: 9ff86d6d5794bc65cd58485460e700f3b21785e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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.4";
  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 []);
}