>From 71095ce9261ebfbe90fcfaf22d5e24b54a9ec758 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Thu, 24 Sep 2020 10:29:13 -0400 Subject: [PATCH 19/20] gnu: pixman: Enable some features. * gnu/packages/xdisorg.scm (pixman) [arguments]<#:configure-flags>[--enable-timers]: New flag. [--enable-gnuplot]: New flag. --- gnu/packages/xdisorg.scm | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 337c787ad0..2dc999d19a 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -484,19 +484,22 @@ following the mouse.") (search-patches "pixman-CVE-2016-5296.patch")))) (build-system gnu-build-system) - (arguments - '(#:configure-flags '("--disable-static"))) - (native-inputs - `(("pkg-config" ,pkg-config))) - (inputs - `(("libpng" ,libpng) - ("zlib" ,zlib))) - (synopsis "Low-level pixel manipulation library") - (description "Pixman is a low-level software library for pixel + `(#:configure-flags + (list + "--disable-static" + "--enable-timers" + "--enable-gnuplot"))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libpng" ,libpng) + ("zlib" ,zlib))) + (synopsis "Low-level pixel manipulation library") + (description "Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterisation.") - (home-page "http://www.pixman.org/") - (license license:expat))) + (home-page "http://www.pixman.org/") + (license license:expat))) (define-public libdrm (package -- 2.28.0