gnu: pixman: Update package definition.

* gnu/packages/xdisorg.scm (pixman) [version]: Update to 0.40.0.
[source]<origin>[sha256]: Modify base32.
[arguments]<#:configure-flags>[--enable-timers]: New flag.
[--enable-gnuplot]: New flag.
[synopsis]: Modify.
[description]: Modify.
[license]: Change from X11 to expat.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
Raghav Gururajan 2020-07-17 16:06:09 -04:00 committed by Danny Milosavljevic
parent 3afdb28c4e
commit 572e730060
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -469,30 +469,34 @@ (define-public xeyes
(define-public pixman
(package
(name "pixman")
(version "0.38.4")
(source (origin
(method url-fetch)
(uri (string-append
"https://www.cairographics.org/releases/pixman-"
version ".tar.gz"))
(sha256
(base32
"1ryxzdf048x7wsx4dlvrr1p00gzwfs7lybnhgc7ygbj0dvyxcrns"))
(patches (search-patches "pixman-CVE-2016-5296.patch"))))
(version "0.40.0")
(source
(origin
(method url-fetch)
(uri
(string-append
"https://www.cairographics.org/releases/pixman-"
version ".tar.gz"))
(sha256
(base32 "1z13n96m7x91j25qq9wlkxsbq04wfwjhw66ir17frna06zn0s83d"))
(patches
(search-patches "pixman-CVE-2016-5296.patch"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-static")))
(inputs
`(("libpng" ,libpng)
("zlib" ,zlib)))
`(#:configure-flags
(list
"--disable-static"
"--enable-timers"
"--enable-gnuplot")))
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
`(("libpng" ,libpng)))
(synopsis "Image processing and manipulation library")
(description "Pixman is a library that provides low-level pixel manipulation
features such as image compositing and trapezoid rasterization.")
(home-page "http://www.pixman.org/")
(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.")
(license license:x11)))
(license license:expat)))
(define-public libdrm
(package