diff options
author | Andreas Enge <andreas@enge.fr> | 2013-03-06 22:40:03 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-03-06 22:40:03 +0100 |
commit | 5acf2910b8055b8baf9fc4187943095370f1764c (patch) | |
tree | 625bb16e3e173d3c5d70629a9b848a61685ea9a5 /gnu | |
parent | d92083ad99e0d5f43fa9ded5ef0d023815ea4ff3 (diff) | |
download | gnu-guix-5acf2910b8055b8baf9fc4187943095370f1764c.tar gnu-guix-5acf2910b8055b8baf9fc4187943095370f1764c.tar.gz |
gnu: xorg: Add pixman.
* gnu/packages/xorg.scm (pixman): New variable.
* gnu/packages/xorg.scm (xorg-server): Enable input pixman.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 248d4efa73..0735f950a4 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -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) |