me
/
guix
Archived
1
0
Fork 0

gnu: xorg: Add pixman.

* gnu/packages/xorg.scm (pixman): New variable.
* gnu/packages/xorg.scm (xorg-server): Enable input pixman.
master
Andreas Enge 2013-03-06 22:40:03 +01:00
parent d92083ad99
commit 5acf2910b8
1 changed files with 32 additions and 1 deletions

View File

@ -42,6 +42,37 @@
;; packages outside the x.org system proper
(define-public pixman
(package
(name "pixman")
(version "0.28.2")
(source
(origin
(method url-fetch)
(uri (string-append
"http://cairographics.org/releases/pixman-"
version
".tar.gz"))
(sha256
(base32
"0mcvxd5gx3w1wzgph91l2vaiic91jmx7s01hi2igphyvd80ckyia"))))
(build-system gnu-build-system)
(inputs
`(("libpng" ,libpng)
("pkg-config" ,pkg-config)
("zlib" ,zlib)))
(home-page "http://www.pixman.org/")
(synopsis "pixman, a 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)))
;; packages without propagated input
;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
;; be defined first, the split makes book-keeping easier.)
@ -3719,7 +3750,7 @@
("libxv" ,libxv)
;; ("mesa" ,mesa)
("openssl" ,openssl)
;; ("pixman" ,pixman)
("pixman" ,pixman)
("pkg-config" ,pkg-config)
("recordproto" ,recordproto)
("randrproto" ,randrproto)