14 stdenv.mkDerivation rec {
18 outputs = [ "out" "dev" ];
21 url = "https://www.cairographics.org/releases/cairomm-${version}.tar.xz";
22 sha256 = "uBJVOU4+qOiqiHJ20ir6iYX8ja72BpLrJAfSMEnwPPs=";
34 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
38 propagatedBuildInputs = [
47 # Tests fail on Darwin, possibly because of sandboxing.
48 doCheck = !stdenv.hostPlatform.isDarwin;
51 description = "C++ bindings for the Cairo vector graphics library";
52 homepage = "https://www.cairographics.org/";
53 license = with licenses; [ lgpl2Plus mpl10 ];
54 maintainers = teams.gnome.members;
55 platforms = platforms.unix;