about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-09-29 20:58:23 +0800
committerJan Tojnar <jtojnar@gmail.com>2023-11-21 08:42:30 +0100
commitc0b2918c4b8462d316773e852fd7dfaefafd6223 (patch)
treeadb8f1a2cd4aa5748bcaed8c3a12ecf5f00dd432
parentfac853bb80dfb7b50e34d821a7ccb194abdd5000 (diff)
cairomm_1_16: 1.16.2 → 1.18.0
https://gitlab.freedesktop.org/cairo/cairomm/-/compare/1.16.2...1.18.0

This is still cairomm_1_16 since the API version is 1.16.

NEWS look okay. boost-shared option now defaults to true.

Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
-rw-r--r--pkgs/development/libraries/cairomm/1.16.nix18
1 files changed, 3 insertions, 15 deletions
diff --git a/pkgs/development/libraries/cairomm/1.16.nix b/pkgs/development/libraries/cairomm/1.16.nix
index 10e5286c5010f..9da00741c34e1 100644
--- a/pkgs/development/libraries/cairomm/1.16.nix
+++ b/pkgs/development/libraries/cairomm/1.16.nix
@@ -13,13 +13,13 @@
 
 stdenv.mkDerivation rec {
   pname = "cairomm";
-  version = "1.16.2";
+  version = "1.18.0";
 
   outputs = [ "out" "dev" ];
 
   src = fetchurl {
     url = "https://www.cairographics.org/releases/cairomm-${version}.tar.xz";
-    sha256 = "amO/mKl92isPVeNNG18/uQnvi3D5uNOCyx/zl459wT8=";
+    sha256 = "uBJVOU4+qOiqiHJ20ir6iYX8ja72BpLrJAfSMEnwPPs=";
   };
 
   nativeBuildInputs = [
@@ -42,7 +42,6 @@ stdenv.mkDerivation rec {
 
   mesonFlags = [
     "-Dbuild-tests=true"
-    "-Dboost-shared=true"
   ];
 
   # Meson is no longer able to pick up Boost automatically.
@@ -54,18 +53,7 @@ stdenv.mkDerivation rec {
   doCheck = !stdenv.isDarwin;
 
   meta = with lib; {
-    description = "A 2D graphics library with support for multiple output devices";
-    longDescription = ''
-      Cairo is a 2D graphics library with support for multiple output
-      devices.  Currently supported output targets include the X
-      Window System, Quartz, Win32, image buffers, PostScript, PDF,
-      and SVG file output.  Experimental backends include OpenGL
-      (through glitz), XCB, BeOS, OS/2, and DirectFB.
-
-      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).
-    '';
+    description = "C++ bindings for the Cairo vector graphics library";
     homepage = "https://www.cairographics.org/";
     license = with licenses; [ lgpl2Plus mpl10 ];
     maintainers = teams.gnome.members;