mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
117 lines
3.4 KiB
Nix
117 lines
3.4 KiB
Nix
{ lib, stdenv, fetchurl, 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
|
|
, darwin
|
|
, testers
|
|
}:
|
|
|
|
let
|
|
inherit (lib) optional optionals;
|
|
in stdenv.mkDerivation (finalAttrs: let
|
|
inherit (finalAttrs) pname version;
|
|
in {
|
|
pname = "cairo";
|
|
version = "1.18.2";
|
|
|
|
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-piubtCQl6ETMPW3d4EP/Odur7dFULrpXout5+FiJ1Fo=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "dev"; # very small
|
|
separateDebugInfo = true;
|
|
|
|
nativeBuildInputs = [
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
docbook_xsl
|
|
] ++ optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
CoreGraphics
|
|
CoreText
|
|
ApplicationServices
|
|
Carbon
|
|
]);
|
|
|
|
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";
|
|
netbsd = "false";
|
|
}.${stdenv.hostPlatform.parsed.kernel.name} or
|
|
(throw "Unknown value for ipc_rmid_deferred_release")
|
|
}
|
|
''}"
|
|
];
|
|
|
|
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 = with lib; {
|
|
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 licenses; [ lgpl2Plus mpl10 ];
|
|
pkgConfigModules = [
|
|
"cairo-pdf"
|
|
"cairo-ps"
|
|
"cairo-svg"
|
|
] ++ lib.optional gobjectSupport "cairo-gobject";
|
|
platforms = platforms.all;
|
|
};
|
|
})
|