summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ca/cairo/package.nix
blob: 172deabc71490e23869429e982a1ede2426bbeff (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
  lib,
  stdenv,
  fetchurl,
  lzo,
  gtk-doc,
  meson,
  ninja,
  pkg-config,
  python3,
  docbook_xsl,
  fontconfig,
  freetype,
  libpng,
  pixman,
  zlib,
  x11Support ? !stdenv.hostPlatform.isDarwin || true,
  libxext,
  libxrender,
  gobjectSupport ? true,
  glib,
  xcbSupport ? x11Support,
  libxcb,
  testers,
}:

let
  inherit (lib) optional optionals;
in
stdenv.mkDerivation (
  finalAttrs:
  let
    inherit (finalAttrs) pname version;
  in
  {
    pname = "cairo";
    version = "1.18.4";

    src = fetchurl {
      url = "https://cairographics.org/${
        if lib.mod (builtins.fromJSON (lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"
      }/${pname}-${version}.tar.xz";
      hash = "sha256-RF7YIIpuSCPeEianTKMZ02AOg/Y2n5mxQmUAZZnDLMs=";
    };

    outputs = [
      "out"
      "dev"
      "devdoc"
    ];
    outputBin = "dev"; # very small
    separateDebugInfo = true;

    nativeBuildInputs = [
      gtk-doc
      meson
      ninja
      pkg-config
      python3
    ];

    buildInputs = [
      docbook_xsl
      lzo
    ];

    propagatedBuildInputs = [
      fontconfig
      freetype
      pixman
      libpng
      zlib
    ]
    ++ optionals x11Support [
      libxext
      libxrender
    ]
    ++ optionals xcbSupport [ libxcb ]
    ++ optional gobjectSupport glib; # TODO: maybe liblzo but what would it be for here?

    mesonFlags = [
      "-Dgtk_doc=true"

      # error: #error config.h must be included before this header
      "-Dsymbol-lookup=disabled"

      # Only used in tests, causes a dependency cycle
      "-Dspectre=disabled"

      (lib.mesonEnable "glib" gobjectSupport)
      (lib.mesonEnable "tests" finalAttrs.finalPackage.doCheck)
      (lib.mesonEnable "xlib" x11Support)
      (lib.mesonEnable "xcb" xcbSupport)
    ]
    ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
      "--cross-file=${builtins.toFile "cross-file.conf" ''
        [properties]
        ipc_rmid_deferred_release = ${
          {
            linux = "true";
            freebsd = "true";
          }
          .${stdenv.hostPlatform.parsed.kernel.name} or "false"
        }
      ''}"
    ];

    preConfigure = ''
      patchShebangs version.py
    '';

    enableParallelBuilding = true;

    doCheck = false; # fails

    postInstall = ''
      # Work around broken `Requires.private' that prevents Freetype
      # `-I' flags to be propagated.
      sed -i "$out/lib/pkgconfig/cairo.pc" \
          -es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype.dev}/include/freetype2 -I${freetype.dev}/include|g'
    '';

    passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;

    meta = {
      description = "2D graphics library with support for multiple output devices";
      mainProgram = "cairo-trace";
      longDescription = ''
        Cairo is a 2D graphics library with support for multiple output
        devices.  Currently supported output targets include the X
        Window System, XCB, Quartz, Win32, image buffers, PostScript,
        PDF, and SVG file output.

        Cairo is designed to produce consistent output on all output
        media while taking advantage of display hardware acceleration
        when available (e.g., through the X Render Extension).
      '';
      homepage = "http://cairographics.org/";
      license = with lib.licenses; [
        lgpl2Plus
        mpl10
      ];
      pkgConfigModules = [
        "cairo-pdf"
        "cairo-ps"
        "cairo-svg"
      ]
      ++ lib.optional gobjectSupport "cairo-gobject";
      platforms = lib.platforms.all;
    };
  }
)