depot/third_party/nixpkgs/pkgs/development/libraries/cairomm/1.16.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

62 lines
1.2 KiB
Nix

{ stdenv
, lib
, fetchurl
, boost
, meson
, ninja
, pkg-config
, cairo
, fontconfig
, libsigcxx30
, ApplicationServices
}:
stdenv.mkDerivation rec {
pname = "cairomm";
version = "1.18.0";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "https://www.cairographics.org/releases/cairomm-${version}.tar.xz";
sha256 = "uBJVOU4+qOiqiHJ20ir6iYX8ja72BpLrJAfSMEnwPPs=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
boost # for tests
fontconfig
] ++ lib.optionals stdenv.isDarwin [
ApplicationServices
];
propagatedBuildInputs = [
cairo
libsigcxx30
];
mesonFlags = [
"-Dbuild-tests=true"
];
# Meson is no longer able to pick up Boost automatically.
# https://github.com/NixOS/nixpkgs/issues/86131
BOOST_INCLUDEDIR = "${lib.getDev boost}/include";
BOOST_LIBRARYDIR = "${lib.getLib boost}/lib";
# Tests fail on Darwin, possibly because of sandboxing.
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "C++ bindings for the Cairo vector graphics library";
homepage = "https://www.cairographics.org/";
license = with licenses; [ lgpl2Plus mpl10 ];
maintainers = teams.gnome.members;
platforms = platforms.unix;
};
}