gnu: Update harfbuzz to 0.9.20.
[jackhill/guix/guix.git] / gnu / packages / xorg.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (gnu packages xorg)
20 #:use-module ((guix licenses)
21 #:renamer (symbol-prefix-proc 'license:))
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages bison)
26 #:use-module (gnu packages compression)
27 #:use-module (gnu packages flex)
28 #:use-module (gnu packages fontutils)
29 #:use-module ((gnu packages gettext)
30 #:renamer (symbol-prefix-proc 'gnu:))
31 #:use-module (gnu packages glib)
32 #:use-module (gnu packages gperf)
33 #:use-module (gnu packages libpng)
34 #:use-module (gnu packages linux)
35 #:use-module (gnu packages m4)
36 #:use-module (gnu packages openssl)
37 #:use-module (gnu packages perl)
38 #:use-module (gnu packages pkg-config)
39 #:use-module (gnu packages python)
40 #:use-module (gnu packages xml))
41
42
43
44 ;; packages outside the x.org system proper
45
46 (define-public xeyes
47 (package
48 (name "xeyes")
49 (version "1.0.1")
50 (source
51 (origin
52 (method url-fetch)
53 (uri (string-append
54 "http://xeyes.sourcearchive.com/downloads/1.0.1/xeyes_"
55 version
56 ".orig.tar.gz"))
57 (sha256
58 (base32
59 "04c3md570j67g55h3bix1qbngcslnq91skli51k3g1avki88zkm9"))))
60 (build-system gnu-build-system)
61 (inputs
62 `(("libxext" ,libxext)
63 ("libxmu" ,libxmu)
64 ("libxt" ,libxt)
65 ("pkg-config" ,pkg-config)))
66 (home-page "http://xeyes.sourcearchive.com/")
67 (synopsis "A follow the mouse X demo")
68 (description "Xeyes is a demo program for x.org. It shows eyes
69 following the mouse.")
70 (license license:x11)))
71
72
73 (define-public pixman
74 (package
75 (name "pixman")
76 (version "0.28.2")
77 (source
78 (origin
79 (method url-fetch)
80 (uri (string-append
81 "http://cairographics.org/releases/pixman-"
82 version
83 ".tar.gz"))
84 (sha256
85 (base32
86 "0mcvxd5gx3w1wzgph91l2vaiic91jmx7s01hi2igphyvd80ckyia"))))
87 (build-system gnu-build-system)
88 (inputs
89 `(("libpng" ,libpng)
90 ("pkg-config" ,pkg-config)
91 ("zlib" ,zlib)))
92 (home-page "http://www.pixman.org/")
93 (synopsis "pixman, a low-level pixel manipulation library")
94 (description "Pixman is a low-level software library for pixel
95 manipulation, providing features such as image compositing and trapezoid
96 rasterisation.")
97 (license license:x11)))
98
99
100 (define-public libdrm
101 (package
102 (name "libdrm")
103 (version "2.4.42")
104 (source
105 (origin
106 (method url-fetch)
107 (uri (string-append
108 "http://dri.freedesktop.org/libdrm/libdrm-"
109 version
110 ".tar.bz2"))
111 (sha256
112 (base32
113 "1qbnpi64hyqzd650hj6jki1d50pzypdhj3rw9m3whwbqly110rz0"))))
114 (build-system gnu-build-system)
115 (inputs
116 `(("libpciaccess" ,libpciaccess)
117 ("libpthread-stubs" ,libpthread-stubs)
118 ("pkg-config" ,pkg-config)))
119 (home-page "http://dri.freedesktop.org/wiki/")
120 (synopsis "libdrm, direct rendering userspace library")
121 (description "The Direct Rendering Infrastructure, also known as the DRI,
122 is a framework for allowing direct access to graphics hardware under the
123 X Window System in a safe and efficient manner. It includes changes to the
124 X server, to several client libraries, and to the kernel (DRM, Direct
125 Rendering Manager). The most important use for the DRI is to create fast
126 OpenGL implementations providing hardware acceleration for Mesa.
127 Several 3D accelerated drivers have been written to the DRI specification,
128 including drivers for chipsets produced by 3DFX, AMD (formerly ATI), Intel
129 and Matrox.")
130 (license license:x11)))
131
132
133 ;; old version, required by old mesa, see
134 ;; http://www.mail-archive.com/nouveau@lists.freedesktop.org/msg10098.html
135 (define-public libdrm-2.4.33
136 (package (inherit libdrm)
137 (version "2.4.33")
138 (source
139 (origin
140 (method url-fetch)
141 (uri (string-append
142 "http://dri.freedesktop.org/libdrm/libdrm-"
143 version
144 ".tar.bz2"))
145 (sha256
146 (base32
147 "1slgi61n4dlsfli47ql354fd1ppj7n40jd94wvnsdqx0mna9syrd"))))
148 (arguments
149 `(#:configure-flags
150 ;; create libdrm_nouveau.so, needed by mesa, see
151 ;; http://comments.gmane.org/gmane.linux.lfs.beyond.support/43261
152 `("--enable-nouveau-experimental-api")))))
153
154
155 (define-public mtdev
156 (package
157 (name "mtdev")
158 (version "1.1.3")
159 (source
160 (origin
161 (method url-fetch)
162 (uri (string-append
163 "http://bitmath.org/code/mtdev/mtdev-"
164 version ".tar.bz2"))
165 (sha256
166 (base32
167 "159ndzwfpw0xr8mw4lhl47w9c2krshlfrscs7k6n186vknv2hk3d"))))
168 (build-system gnu-build-system)
169 (home-page "http://bitmath.org/code/mtdev/")
170 (synopsis "Multitouch protocol translation library")
171 (description "Mtdev is a stand-alone library which transforms all
172 variants of kernel MT events to the slotted type B protocol. The events
173 put into mtdev may be from any MT device, specifically type A without
174 contact tracking, type A with contact tracking, or type B with contact
175 tracking.")
176 (license license:x11)))
177
178
179
180 ;; packages without propagated input
181 ;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
182 ;; be defined first, the split makes book-keeping easier.)
183
184
185 ;; compiles only on macos
186 ;; (define-public applewmproto
187
188
189 (define-public bdftopcf
190 (package
191 (name "bdftopcf")
192 (version "1.0.3")
193 (source
194 (origin
195 (method url-fetch)
196 (uri (string-append
197 "mirror://xorg/X11R7.7/src/everything/bdftopcf-"
198 version
199 ".tar.bz2"))
200 (sha256
201 (base32
202 "02hx981f7jfwylxj21s91yvv4h597nqqzz3vd6ar81zyn84b944w"))))
203 (build-system gnu-build-system)
204 (inputs
205 `(("libxfont" ,libxfont)
206 ("pkg-config" ,pkg-config)))
207 (home-page "http://www.x.org/wiki/")
208 (synopsis "xorg implementation of the X Window System")
209 (description "X.org provides an implementation of the X Window System")
210 (license license:x11)))
211
212
213 (define-public bigreqsproto
214 (package
215 (name "bigreqsproto")
216 (version "1.1.2")
217 (source
218 (origin
219 (method url-fetch)
220 (uri (string-append
221 "mirror://xorg/X11R7.7/src/everything/bigreqsproto-"
222 version
223 ".tar.bz2"))
224 (sha256
225 (base32
226 "07hvfm84scz8zjw14riiln2v4w03jlhp756ypwhq27g48jmic8a6"))))
227 (build-system gnu-build-system)
228 (inputs `(("pkg-config" ,pkg-config)))
229 (home-page "http://www.x.org/wiki/")
230 (synopsis "xorg implementation of the X Window System")
231 (description "X.org provides an implementation of the X Window System")
232 (license license:x11)))
233
234
235 (define-public compositeproto
236 (package
237 (name "compositeproto")
238 (version "0.4.2")
239 (source
240 (origin
241 (method url-fetch)
242 (uri (string-append
243 "mirror://xorg/X11R7.7/src/everything/compositeproto-"
244 version
245 ".tar.bz2"))
246 (sha256
247 (base32
248 "1z0crmf669hirw4s7972mmp8xig80kfndja9h559haqbpvq5k4q4"))))
249 (build-system gnu-build-system)
250 (inputs
251 `(("fixesproto" ,fixesproto)
252 ("pkg-config" ,pkg-config)))
253 (home-page "http://www.x.org/wiki/")
254 (synopsis "xorg implementation of the X Window System")
255 (description "X.org provides an implementation of the X Window System")
256 (license license:x11)))
257
258
259 (define-public damageproto
260 (package
261 (name "damageproto")
262 (version "1.2.1")
263 (source
264 (origin
265 (method url-fetch)
266 (uri (string-append
267 "mirror://xorg/X11R7.7/src/everything/damageproto-"
268 version
269 ".tar.bz2"))
270 (sha256
271 (base32
272 "0nzwr5pv9hg7c21n995pdiv0zqhs91yz3r8rn3aska4ykcp12z2w"))))
273 (build-system gnu-build-system)
274 (inputs `(("pkg-config" ,pkg-config)))
275 (home-page "http://www.x.org/wiki/")
276 (synopsis "xorg implementation of the X Window System")
277 (description "X.org provides an implementation of the X Window System")
278 (license license:x11)))
279
280
281 (define-public dmxproto
282 (package
283 (name "dmxproto")
284 (version "2.3.1")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (string-append
289 "mirror://xorg/X11R7.7/src/everything/dmxproto-"
290 version
291 ".tar.bz2"))
292 (sha256
293 (base32
294 "02b5x9dkgajizm8dqyx2w6hmqx3v25l67mgf35nj6sz0lgk52877"))))
295 (build-system gnu-build-system)
296 (inputs `(("pkg-config" ,pkg-config)))
297 (home-page "http://www.x.org/wiki/")
298 (synopsis "xorg implementation of the X Window System")
299 (description "X.org provides an implementation of the X Window System")
300 (license license:x11)))
301
302
303 (define-public dri2proto
304 (package
305 (name "dri2proto")
306 (version "2.6")
307 (source
308 (origin
309 (method url-fetch)
310 (uri (string-append
311 "mirror://xorg/X11R7.7/src/everything/dri2proto-"
312 version
313 ".tar.bz2"))
314 (sha256
315 (base32
316 "02drlfqvjm2q7dvkkwli3fs2crb6rdb3kyd13vwx7z0rijrc10md"))))
317 (build-system gnu-build-system)
318 (home-page "http://www.x.org/wiki/")
319 (synopsis "xorg implementation of the X Window System")
320 (description "X.org provides an implementation of the X Window System")
321 (license license:x11)))
322
323
324 (define-public encodings
325 (package
326 (name "encodings")
327 (version "1.0.4")
328 (source
329 (origin
330 (method url-fetch)
331 (uri (string-append
332 "mirror://xorg/X11R7.7/src/everything/encodings-"
333 version
334 ".tar.bz2"))
335 (sha256
336 (base32
337 "0ffmaw80vmfwdgvdkp6495xgsqszb6s0iira5j0j6pd4i0lk3mnf"))))
338 (build-system gnu-build-system)
339 (inputs
340 `(("mkfontscale" ,mkfontscale)
341 ("pkg-config" ,pkg-config)))
342 (home-page "http://www.x.org/wiki/")
343 (synopsis "xorg implementation of the X Window System")
344 (description "X.org provides an implementation of the X Window System")
345 (license license:public-domain)))
346
347
348 (define-public font-adobe100dpi
349 (package
350 (name "font-adobe100dpi")
351 (version "1.0.3")
352 (source
353 (origin
354 (method url-fetch)
355 (uri (string-append
356 "mirror://xorg/X11R7.7/src/everything/font-adobe-100dpi-"
357 version
358 ".tar.bz2"))
359 (sha256
360 (base32
361 "0m60f5bd0caambrk8ksknb5dks7wzsg7g7xaf0j21jxmx8rq9h5j"))))
362 (build-system gnu-build-system)
363 (inputs
364 `(("bdftopcf" ,bdftopcf)
365 ("font-util", font-util)
366 ("mkfontdir" ,mkfontdir)
367 ("pkg-config" ,pkg-config)))
368 (arguments
369 `(#:configure-flags (list
370 ;; install fonts into subdirectory of package output instead of
371 ;; font-util-?.?.?/share/fonts/X11
372 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
373 (home-page "http://www.x.org/wiki/")
374 (synopsis "xorg implementation of the X Window System")
375 (description "X.org provides an implementation of the X Window System")
376 (license license:x11)))
377
378
379 (define-public font-adobe75dpi
380 (package
381 (name "font-adobe75dpi")
382 (version "1.0.3")
383 (source
384 (origin
385 (method url-fetch)
386 (uri (string-append
387 "mirror://xorg/X11R7.7/src/everything/font-adobe-75dpi-"
388 version
389 ".tar.bz2"))
390 (sha256
391 (base32
392 "02advcv9lyxpvrjv8bjh1b797lzg6jvhipclz49z8r8y98g4l0n6"))))
393 (build-system gnu-build-system)
394 (inputs
395 `(("bdftopcf" ,bdftopcf)
396 ("font-util", font-util)
397 ("mkfontdir" ,mkfontdir)
398 ("pkg-config" ,pkg-config)))
399 (arguments
400 `(#:configure-flags (list
401 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
402 (home-page "http://www.x.org/wiki/")
403 (synopsis "xorg implementation of the X Window System")
404 (description "X.org provides an implementation of the X Window System")
405 (license license:x11)))
406
407
408 ;; non-free license
409 ;; (define-public font-adobe-utopia100dpi
410 ;; (define-public font-adobe-utopia75dpi
411 ;; (define-public font-adobe-utopia-type1
412
413
414 (define-public font-alias
415 (package
416 (name "font-alias")
417 (version "1.0.3")
418 (source
419 (origin
420 (method url-fetch)
421 (uri (string-append
422 "mirror://xorg/X11R7.7/src/everything/font-alias-"
423 version
424 ".tar.bz2"))
425 (sha256
426 (base32
427 "16ic8wfwwr3jicaml7b5a0sk6plcgc1kg84w02881yhwmqm3nicb"))))
428 (build-system gnu-build-system)
429 (inputs `(("pkg-config" ,pkg-config)))
430 (home-page "http://www.x.org/wiki/")
431 (synopsis "xorg implementation of the X Window System")
432 (description "X.org provides an implementation of the X Window System")
433 (license license:x11)))
434
435
436 (define-public font-arabic-misc
437 (package
438 (name "font-arabic-misc")
439 (version "1.0.3")
440 (source
441 (origin
442 (method url-fetch)
443 (uri (string-append
444 "mirror://xorg/X11R7.7/src/everything/font-arabic-misc-"
445 version
446 ".tar.bz2"))
447 (sha256
448 (base32
449 "1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"))))
450 (build-system gnu-build-system)
451 (inputs
452 `(("mkfontdir" ,mkfontdir)
453 ("bdftopcf" ,bdftopcf)
454 ("pkg-config" ,pkg-config)))
455 (home-page "http://www.x.org/wiki/")
456 (synopsis "xorg implementation of the X Window System")
457 (description "X.org provides an implementation of the X Window System")
458 (license license:x11)))
459
460
461 ;; non-free license
462 ;; (define-public font-bh100dpi
463 ;; (define-public font-bh75dpi
464 ;; (define-public font-bh-lucidatypewriter100dpi
465 ;; (define-public font-bh-lucidatypewriter75dpi
466 ;; (define-public font-bh-ttf
467 ;; (define-public font-bh-type1
468 ;; (define-public font-bitstream100dpi
469 ;; (define-public font-bitstream75dpi
470
471
472 (define-public font-cronyx-cyrillic
473 (package
474 (name "font-cronyx-cyrillic")
475 (version "1.0.3")
476 (source
477 (origin
478 (method url-fetch)
479 (uri (string-append
480 "mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
481 version
482 ".tar.bz2"))
483 (sha256
484 (base32
485 "0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"))))
486 (build-system gnu-build-system)
487 (inputs
488 `(("mkfontdir" ,mkfontdir)
489 ("bdftopcf" ,bdftopcf)
490 ("pkg-config" ,pkg-config)))
491 (home-page "http://www.x.org/wiki/")
492 (synopsis "xorg implementation of the X Window System")
493 (description "X.org provides an implementation of the X Window System")
494 (license license:x11)))
495
496
497 ;; no license
498 ;; (define-public font-cursor-misc
499
500 ;; non-free license
501 ;; (define-public font-daewoo-misc
502
503
504 (define-public font-dec-misc
505 (package
506 (name "font-dec-misc")
507 (version "1.0.3")
508 (source
509 (origin
510 (method url-fetch)
511 (uri (string-append
512 "mirror://xorg/X11R7.7/src/everything/font-dec-misc-"
513 version
514 ".tar.bz2"))
515 (sha256
516 (base32
517 "0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"))))
518 (build-system gnu-build-system)
519 (inputs
520 `(("mkfontdir" ,mkfontdir)
521 ("bdftopcf" ,bdftopcf)
522 ("pkg-config" ,pkg-config)))
523 (home-page "http://www.x.org/wiki/")
524 (synopsis "xorg implementation of the X Window System")
525 (description "X.org provides an implementation of the X Window System")
526 (license license:x11)))
527
528
529 ;; non-free license
530 ;; (define-public font-ibm-type1
531
532 (define-public font-isas-misc
533 (package
534 (name "font-isas-misc")
535 (version "1.0.3")
536 (source
537 (origin
538 (method url-fetch)
539 (uri (string-append
540 "mirror://xorg/X11R7.7/src/everything/font-isas-misc-"
541 version
542 ".tar.bz2"))
543 (sha256
544 (base32
545 "0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"))))
546 (build-system gnu-build-system)
547 (inputs
548 `(("mkfontdir" ,mkfontdir)
549 ("bdftopcf" ,bdftopcf)
550 ("pkg-config" ,pkg-config)))
551 (home-page "http://www.x.org/wiki/")
552 (synopsis "xorg implementation of the X Window System")
553 (description "X.org provides an implementation of the X Window System")
554 (license license:x11)))
555
556
557 ;; non-free license
558 ;; (define-public font-jis-misc
559
560
561 (define-public font-micro-misc
562 (package
563 (name "font-micro-misc")
564 (version "1.0.3")
565 (source
566 (origin
567 (method url-fetch)
568 (uri (string-append
569 "mirror://xorg/X11R7.7/src/everything/font-micro-misc-"
570 version
571 ".tar.bz2"))
572 (sha256
573 (base32
574 "1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"))))
575 (build-system gnu-build-system)
576 (inputs
577 `(("mkfontdir" ,mkfontdir)
578 ("bdftopcf" ,bdftopcf)
579 ("pkg-config" ,pkg-config)))
580 (home-page "http://www.x.org/wiki/")
581 (synopsis "xorg implementation of the X Window System")
582 (description "X.org provides an implementation of the X Window System")
583 (license license:public-domain)))
584
585
586 (define-public font-misc-cyrillic
587 (package
588 (name "font-misc-cyrillic")
589 (version "1.0.3")
590 (source
591 (origin
592 (method url-fetch)
593 (uri (string-append
594 "mirror://xorg/X11R7.7/src/everything/font-misc-cyrillic-"
595 version
596 ".tar.bz2"))
597 (sha256
598 (base32
599 "0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"))))
600 (build-system gnu-build-system)
601 (inputs
602 `(("mkfontdir" ,mkfontdir)
603 ("bdftopcf" ,bdftopcf)
604 ("pkg-config" ,pkg-config)))
605 (home-page "http://www.x.org/wiki/")
606 (synopsis "xorg implementation of the X Window System")
607 (description "X.org provides an implementation of the X Window System")
608 (license license:x11)))
609
610
611 (define-public font-misc-ethiopic
612 (package
613 (name "font-misc-ethiopic")
614 (version "1.0.3")
615 (source
616 (origin
617 (method url-fetch)
618 (uri (string-append
619 "mirror://xorg/X11R7.7/src/everything/font-misc-ethiopic-"
620 version
621 ".tar.bz2"))
622 (sha256
623 (base32
624 "19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"))))
625 (build-system gnu-build-system)
626 (inputs
627 `(("mkfontdir" ,mkfontdir)
628 ("pkg-config" ,pkg-config)))
629 (home-page "http://www.x.org/wiki/")
630 (synopsis "xorg implementation of the X Window System")
631 (description "X.org provides an implementation of the X Window System")
632 (license license:x11)))
633
634
635 ;; non-free license
636 ;; (define-public font-misc-meltho
637
638
639 (define-public font-misc-misc
640 (package
641 (name "font-misc-misc")
642 (version "1.1.2")
643 (source
644 (origin
645 (method url-fetch)
646 (uri (string-append
647 "mirror://xorg/X11R7.7/src/everything/font-misc-misc-"
648 version
649 ".tar.bz2"))
650 (sha256
651 (base32
652 "150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"))))
653 (build-system gnu-build-system)
654 (inputs
655 `(("mkfontdir" ,mkfontdir)
656 ("font-util" ,font-util)
657 ("bdftopcf" ,bdftopcf)
658 ("pkg-config" ,pkg-config)))
659 (arguments
660 `(#:configure-flags (list
661 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
662 (home-page "http://www.x.org/wiki/")
663 (synopsis "xorg implementation of the X Window System")
664 (description "X.org provides an implementation of the X Window System")
665 (license license:public-domain)))
666
667
668 (define-public font-mutt-misc
669 (package
670 (name "font-mutt-misc")
671 (version "1.0.3")
672 (source
673 (origin
674 (method url-fetch)
675 (uri (string-append
676 "mirror://xorg/X11R7.7/src/everything/font-mutt-misc-"
677 version
678 ".tar.bz2"))
679 (sha256
680 (base32
681 "13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"))))
682 (build-system gnu-build-system)
683 (inputs
684 `(("mkfontdir" ,mkfontdir)
685 ("bdftopcf" ,bdftopcf)
686 ("pkg-config" ,pkg-config)))
687 (home-page "http://www.x.org/wiki/")
688 (synopsis "xorg implementation of the X Window System")
689 (description "X.org provides an implementation of the X Window System")
690 (license license:x11)))
691
692
693 (define-public font-schumacher-misc
694 (package
695 (name "font-schumacher-misc")
696 (version "1.1.2")
697 (source
698 (origin
699 (method url-fetch)
700 (uri (string-append
701 "mirror://xorg/X11R7.7/src/everything/font-schumacher-misc-"
702 version
703 ".tar.bz2"))
704 (sha256
705 (base32
706 "0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"))))
707 (build-system gnu-build-system)
708 (inputs
709 `(("mkfontdir" ,mkfontdir)
710 ("font-util" ,font-util)
711 ("bdftopcf" ,bdftopcf)
712 ("pkg-config" ,pkg-config)))
713 (arguments
714 `(#:configure-flags (list
715 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
716 (home-page "http://www.x.org/wiki/")
717 (synopsis "xorg implementation of the X Window System")
718 (description "X.org provides an implementation of the X Window System")
719 (license license:x11)))
720
721
722 (define-public font-screen-cyrillic
723 (package
724 (name "font-screen-cyrillic")
725 (version "1.0.4")
726 (source
727 (origin
728 (method url-fetch)
729 (uri (string-append
730 "mirror://xorg/X11R7.7/src/everything/font-screen-cyrillic-"
731 version
732 ".tar.bz2"))
733 (sha256
734 (base32
735 "0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"))))
736 (build-system gnu-build-system)
737 (inputs
738 `(("mkfontdir" ,mkfontdir)
739 ("bdftopcf" ,bdftopcf)
740 ("pkg-config" ,pkg-config)))
741 (home-page "http://www.x.org/wiki/")
742 (synopsis "xorg implementation of the X Window System")
743 (description "X.org provides an implementation of the X Window System")
744 (license license:x11)))
745
746
747 (define-public font-sony-misc
748 (package
749 (name "font-sony-misc")
750 (version "1.0.3")
751 (source
752 (origin
753 (method url-fetch)
754 (uri (string-append
755 "mirror://xorg/X11R7.7/src/everything/font-sony-misc-"
756 version
757 ".tar.bz2"))
758 (sha256
759 (base32
760 "1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"))))
761 (build-system gnu-build-system)
762 (inputs
763 `(("mkfontdir" ,mkfontdir)
764 ("bdftopcf" ,bdftopcf)
765 ("pkg-config" ,pkg-config)))
766 (home-page "http://www.x.org/wiki/")
767 (synopsis "xorg implementation of the X Window System")
768 (description "X.org provides an implementation of the X Window System")
769 (license license:x11)))
770
771
772 (define-public font-sun-misc
773 (package
774 (name "font-sun-misc")
775 (version "1.0.3")
776 (source
777 (origin
778 (method url-fetch)
779 (uri (string-append
780 "mirror://xorg/X11R7.7/src/everything/font-sun-misc-"
781 version
782 ".tar.bz2"))
783 (sha256
784 (base32
785 "1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"))))
786 (build-system gnu-build-system)
787 (inputs
788 `(("mkfontdir" ,mkfontdir)
789 ("bdftopcf" ,bdftopcf)
790 ("pkg-config" ,pkg-config)))
791 (home-page "http://www.x.org/wiki/")
792 (synopsis "xorg implementation of the X Window System")
793 (description "X.org provides an implementation of the X Window System")
794 (license license:x11)))
795
796
797 (define-public font-util
798 (package
799 (name "font-util")
800 (version "1.3.0")
801 (source
802 (origin
803 (method url-fetch)
804 (uri (string-append
805 "mirror://xorg/X11R7.7/src/everything/font-util-"
806 version
807 ".tar.bz2"))
808 (sha256
809 (base32
810 "15cijajwhjzpy3ydc817zz8x5z4gbkyv3fps687jbq544mbfbafz"))))
811 (build-system gnu-build-system)
812 (inputs `(("pkg-config" ,pkg-config)))
813 (home-page "http://www.x.org/wiki/")
814 (synopsis "xorg implementation of the X Window System")
815 (description "X.org provides an implementation of the X Window System")
816 (license license:x11)))
817
818
819 (define-public font-winitzki-cyrillic
820 (package
821 (name "font-winitzki-cyrillic")
822 (version "1.0.3")
823 (source
824 (origin
825 (method url-fetch)
826 (uri (string-append
827 "mirror://xorg/X11R7.7/src/everything/font-winitzki-cyrillic-"
828 version
829 ".tar.bz2"))
830 (sha256
831 (base32
832 "181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"))))
833 (build-system gnu-build-system)
834 (inputs
835 `(("mkfontdir" ,mkfontdir)
836 ("bdftopcf" ,bdftopcf)
837 ("pkg-config" ,pkg-config)))
838 (home-page "http://www.x.org/wiki/")
839 (synopsis "xorg implementation of the X Window System")
840 (description "X.org provides an implementation of the X Window System")
841 (license license:public-domain)))
842
843
844 (define-public font-xfree86-type1
845 (package
846 (name "font-xfree86-type1")
847 (version "1.0.4")
848 (source
849 (origin
850 (method url-fetch)
851 (uri (string-append
852 "mirror://xorg/X11R7.7/src/everything/font-xfree86-type1-"
853 version
854 ".tar.bz2"))
855 (sha256
856 (base32
857 "0jp3zc0qfdaqfkgzrb44vi9vi0a8ygb35wp082yz7rvvxhmg9sya"))))
858 (build-system gnu-build-system)
859 (inputs
860 `(("mkfontdir" ,mkfontdir)
861 ("pkg-config" ,pkg-config)))
862 (home-page "http://www.x.org/wiki/")
863 (synopsis "xorg implementation of the X Window System")
864 (description "X.org provides an implementation of the X Window System")
865 (license license:x11)))
866
867
868 (define-public fontsproto
869 (package
870 (name "fontsproto")
871 (version "2.1.2")
872 (source
873 (origin
874 (method url-fetch)
875 (uri (string-append
876 "mirror://xorg/X11R7.7/src/everything/fontsproto-"
877 version
878 ".tar.bz2"))
879 (sha256
880 (base32
881 "1ab8mbqxdwvdz4k5x4xb9c4n5w7i1xw276cbpk4z7a1nlpjrg746"))))
882 (build-system gnu-build-system)
883 (inputs `(("pkg-config" ,pkg-config)))
884 (home-page "http://www.x.org/wiki/")
885 (synopsis "xorg implementation of the X Window System")
886 (description "X.org provides an implementation of the X Window System")
887 (license license:x11)))
888
889
890 (define-public glproto
891 (package
892 (name "glproto")
893 (version "1.4.15")
894 (source
895 (origin
896 (method url-fetch)
897 (uri (string-append
898 "mirror://xorg/X11R7.7/src/everything/glproto-"
899 version
900 ".tar.bz2"))
901 (sha256
902 (base32
903 "0wf1vq9g4pyzahb23ywx554pm5bpax49lz188fk6m5p8wbmmc0wr"))))
904 (build-system gnu-build-system)
905 (inputs `(("pkg-config" ,pkg-config)))
906 (home-page "http://www.x.org/wiki/")
907 (synopsis "xorg implementation of the X Window System")
908 (description "X.org provides an implementation of the X Window System")
909 (license license:x11)))
910
911
912 (define-public iceauth
913 (package
914 (name "iceauth")
915 (version "1.0.5")
916 (source
917 (origin
918 (method url-fetch)
919 (uri (string-append
920 "mirror://xorg/X11R7.7/src/everything/iceauth-"
921 version
922 ".tar.bz2"))
923 (sha256
924 (base32
925 "1aq6v671s2x5rc6zn0rgxb4wddg4vq94mckw3cpwl7ccrjjvd5hl"))))
926 (build-system gnu-build-system)
927 (inputs
928 `(("libice" ,libice)
929 ("pkg-config" ,pkg-config)))
930 (home-page "http://www.x.org/wiki/")
931 (synopsis "xorg implementation of the X Window System")
932 (description "X.org provides an implementation of the X Window System")
933 (license license:x11)))
934
935
936 (define-public inputproto
937 (package
938 (name "inputproto")
939 (version "2.2")
940 (source
941 (origin
942 (method url-fetch)
943 (uri (string-append
944 "mirror://xorg/X11R7.7/src/everything/inputproto-"
945 version
946 ".tar.bz2"))
947 (sha256
948 (base32
949 "1c5wqamfsd8g5i8kya5pjfmcac8q5zq1l3vclh6p96f24nmicxfy"))))
950 (build-system gnu-build-system)
951 (inputs `(("pkg-config" ,pkg-config)))
952 (home-page "http://www.x.org/wiki/")
953 (synopsis "xorg implementation of the X Window System")
954 (description "X.org provides an implementation of the X Window System")
955 (license license:x11)))
956
957
958 (define-public kbproto
959 (package
960 (name "kbproto")
961 (version "1.0.6")
962 (source
963 (origin
964 (method url-fetch)
965 (uri (string-append
966 "mirror://xorg/X11R7.7/src/everything/kbproto-"
967 version
968 ".tar.bz2"))
969 (sha256
970 (base32
971 "0yal11hhpiisy3w8wmacsdzzzcnc3xwnswxz8k7zri40xc5aqz03"))))
972 (build-system gnu-build-system)
973 (inputs `(("pkg-config" ,pkg-config)))
974 (home-page "http://www.x.org/wiki/")
975 (synopsis "xorg implementation of the X Window System")
976 (description "X.org provides an implementation of the X Window System")
977 (license license:x11)))
978
979
980 ;; requires applewmproto, which compiles only on macos
981 ;; (define-public libapplewm
982
983
984 (define-public libdmx
985 (package
986 (name "libdmx")
987 (version "1.1.2")
988 (source
989 (origin
990 (method url-fetch)
991 (uri (string-append
992 "mirror://xorg/X11R7.7/src/everything/libdmx-"
993 version
994 ".tar.bz2"))
995 (sha256
996 (base32
997 "1fiq73sfxcbyjval118ialwrzxhzb08xsxmg69adcs47i9j0p1x7"))))
998 (build-system gnu-build-system)
999 (inputs
1000 `(("xextproto" ,xextproto)
1001 ("libxext" ,libxext)
1002 ("libx11" ,libx11)
1003 ("dmxproto" ,dmxproto)
1004 ("pkg-config" ,pkg-config)))
1005 (home-page "http://www.x.org/wiki/")
1006 (synopsis "xorg implementation of the X Window System")
1007 (description "X.org provides an implementation of the X Window System")
1008 (license license:x11)))
1009
1010
1011 (define-public libfontenc
1012 (package
1013 (name "libfontenc")
1014 (version "1.1.1")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (string-append
1019 "mirror://xorg/X11R7.7/src/everything/libfontenc-"
1020 version
1021 ".tar.bz2"))
1022 (sha256
1023 (base32
1024 "0zq1483xy31sssq0h3xxf8y1v4q14cp8rv164ayn7fsn30pq2wny"))))
1025 (build-system gnu-build-system)
1026 (inputs
1027 `(("zlib" ,zlib)
1028 ("xproto" ,xproto)
1029 ("pkg-config" ,pkg-config)))
1030 (home-page "http://www.x.org/wiki/")
1031 (synopsis "xorg implementation of the X Window System")
1032 (description "X.org provides an implementation of the X Window System")
1033 (license license:x11)))
1034
1035
1036 (define-public libfs
1037 (package
1038 (name "libfs")
1039 (version "1.0.4")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (string-append
1044 "mirror://xorg/X11R7.7/src/everything/libFS-"
1045 version
1046 ".tar.bz2"))
1047 (sha256
1048 (base32
1049 "05c3bqgn5m7j4kx8wvy0p36faq6f9jv5yq12m6033m4lflg7cwvh"))))
1050 (build-system gnu-build-system)
1051 (inputs
1052 `(("xtrans" ,xtrans)
1053 ("xproto" ,xproto)
1054 ("fontsproto" ,fontsproto)
1055 ("pkg-config" ,pkg-config)))
1056 (home-page "http://www.x.org/wiki/")
1057 (synopsis "xorg implementation of the X Window System")
1058 (description "X.org provides an implementation of the X Window System")
1059 (license license:x11)))
1060
1061
1062 (define-public libpciaccess
1063 (package
1064 (name "libpciaccess")
1065 (version "0.13.1")
1066 (source
1067 (origin
1068 (method url-fetch)
1069 (uri (string-append
1070 "mirror://xorg/X11R7.7/src/everything/libpciaccess-"
1071 version
1072 ".tar.bz2"))
1073 (sha256
1074 (base32
1075 "11509lkgd5j4g5wy0g13z4sf31h50hqx3jfwb2i4q6k98pv6iar7"))))
1076 (build-system gnu-build-system)
1077 (inputs
1078 `(("zlib" ,zlib) ("pkg-config" ,pkg-config)))
1079 (home-page "http://www.x.org/wiki/")
1080 (synopsis "xorg implementation of the X Window System")
1081 (description "X.org provides an implementation of the X Window System")
1082 (license license:x11)))
1083
1084
1085 (define-public libpthread-stubs
1086 (package
1087 (name "libpthread-stubs")
1088 (version "0.3")
1089 (source
1090 (origin
1091 (method url-fetch)
1092 (uri (string-append
1093 "http://xcb.freedesktop.org/dist/libpthread-stubs-"
1094 version
1095 ".tar.bz2"))
1096 (sha256
1097 (base32
1098 "16bjv3in19l84hbri41iayvvg4ls9gv1ma0x0qlbmwy67i7dbdim"))))
1099 (build-system gnu-build-system)
1100 (inputs `(("pkg-config" ,pkg-config)))
1101 (home-page "http://www.x.org/wiki/")
1102 (synopsis "xorg implementation of the X Window System")
1103 (description "X.org provides an implementation of the X Window System")
1104 (license license:x11)))
1105
1106
1107 (define-public libsm
1108 (package
1109 (name "libsm")
1110 (version "1.2.1")
1111 (source
1112 (origin
1113 (method url-fetch)
1114 (uri (string-append
1115 "mirror://xorg/X11R7.7/src/everything/libSM-"
1116 version
1117 ".tar.bz2"))
1118 (sha256
1119 (base32
1120 "07bzi6xwlhq36f60qfspjbz0qjj7zcgayi1vp4ihgx34kib1vhck"))))
1121 (build-system gnu-build-system)
1122 (inputs
1123 `(("xtrans" ,xtrans)
1124 ("util-linux" ,util-linux)
1125 ("libice" ,libice)
1126 ("pkg-config" ,pkg-config)))
1127 (home-page "http://www.x.org/wiki/")
1128 (synopsis "xorg implementation of the X Window System")
1129 (description "X.org provides an implementation of the X Window System")
1130 (license license:x11)))
1131
1132
1133 (define-public libwindowswm
1134 (package
1135 (name "libwindowswm")
1136 (version "1.0.1")
1137 (source
1138 (origin
1139 (method url-fetch)
1140 (uri (string-append
1141 "mirror://xorg/X11R7.7/src/everything/libWindowsWM-"
1142 version
1143 ".tar.bz2"))
1144 (sha256
1145 (base32
1146 "1p0flwb67xawyv6yhri9w17m1i4lji5qnd0gq8v1vsfb8zw7rw15"))))
1147 (build-system gnu-build-system)
1148 (inputs
1149 `(("xextproto" ,xextproto)
1150 ("libxext" ,libxext)
1151 ("libx11" ,libx11)
1152 ("windowswmproto" ,windowswmproto)
1153 ("pkg-config" ,pkg-config)))
1154 (home-page "http://www.x.org/wiki/")
1155 (synopsis "xorg implementation of the X Window System")
1156 (description "X.org provides an implementation of the X Window System")
1157 (license license:x11)))
1158
1159
1160 (define-public libxcomposite
1161 (package
1162 (name "libxcomposite")
1163 (version "0.4.3")
1164 (source
1165 (origin
1166 (method url-fetch)
1167 (uri (string-append
1168 "mirror://xorg/X11R7.7/src/everything/libXcomposite-"
1169 version
1170 ".tar.bz2"))
1171 (sha256
1172 (base32
1173 "1b8sniijb85v4my6v30ma9yqnwl4hkclci9l1hqxnipfyhl4sa9j"))))
1174 (build-system gnu-build-system)
1175 (inputs
1176 `(("xproto" ,xproto)
1177 ("libxfixes" ,libxfixes)
1178 ("libx11" ,libx11)
1179 ("compositeproto" ,compositeproto)
1180 ("pkg-config" ,pkg-config)))
1181 (home-page "http://www.x.org/wiki/")
1182 (synopsis "xorg implementation of the X Window System")
1183 (description "X.org provides an implementation of the X Window System")
1184 (license license:x11)))
1185
1186
1187 (define-public libxdmcp
1188 (package
1189 (name "libxdmcp")
1190 (version "1.1.1")
1191 (source
1192 (origin
1193 (method url-fetch)
1194 (uri (string-append
1195 "mirror://xorg/X11R7.7/src/everything/libXdmcp-"
1196 version
1197 ".tar.bz2"))
1198 (sha256
1199 (base32
1200 "13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls"))))
1201 (build-system gnu-build-system)
1202 (inputs
1203 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
1204 (home-page "http://www.x.org/wiki/")
1205 (synopsis "xorg implementation of the X Window System")
1206 (description "X.org provides an implementation of the X Window System")
1207 (license license:x11)))
1208
1209
1210 (define-public libxft
1211 (package
1212 (name "libxft")
1213 (version "2.3.1")
1214 (source
1215 (origin
1216 (method url-fetch)
1217 (uri (string-append
1218 "mirror://xorg/X11R7.7/src/everything/libXft-"
1219 version
1220 ".tar.bz2"))
1221 (sha256
1222 (base32
1223 "1gdv6559cdz1lfw73x7wsvax1fkvphmayrymprljhyyb5nwk5kkz"))))
1224 (build-system gnu-build-system)
1225 (inputs
1226 `(("libx11" ,libx11)
1227 ("xproto" ,xproto)
1228 ("libxrender" ,libxrender)
1229 ("xproto" ,xproto)
1230 ("libx11" ,libx11)
1231 ("freetype" ,freetype)
1232 ("fontconfig" ,fontconfig)
1233 ("pkg-config" ,pkg-config)))
1234 (home-page "http://www.x.org/wiki/")
1235 (synopsis "xorg implementation of the X Window System")
1236 (description "X.org provides an implementation of the X Window System")
1237 (license license:x11)))
1238
1239
1240 (define-public libxkbfile
1241 (package
1242 (name "libxkbfile")
1243 (version "1.0.8")
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (string-append
1248 "mirror://xorg/X11R7.7/src/everything/libxkbfile-"
1249 version
1250 ".tar.bz2"))
1251 (sha256
1252 (base32
1253 "0flg5arw6n3njagmsi4i4l0zl5bfx866a1h9ydc3bi1pqlclxaca"))))
1254 (build-system gnu-build-system)
1255 (inputs
1256 `(("libx11" ,libx11)
1257 ("pkg-config" ,pkg-config)))
1258 (home-page "http://www.x.org/wiki/")
1259 (synopsis "xorg implementation of the X Window System")
1260 (description "X.org provides an implementation of the X Window System")
1261 (license license:x11)))
1262
1263
1264 (define-public libxmu
1265 (package
1266 (name "libxmu")
1267 (version "1.1.1")
1268 (source
1269 (origin
1270 (method url-fetch)
1271 (uri (string-append
1272 "mirror://xorg/X11R7.7/src/everything/libXmu-"
1273 version
1274 ".tar.bz2"))
1275 (sha256
1276 (base32
1277 "1pbym8rrznxqd60zwf7w4xpf27sa72bky2knginqcfnca32q343h"))))
1278 (build-system gnu-build-system)
1279 (inputs
1280 `(("libxt" ,libxt)
1281 ("xproto" ,xproto)
1282 ("libxext" ,libxext)
1283 ("pkg-config" ,pkg-config)))
1284 (home-page "http://www.x.org/wiki/")
1285 (synopsis "xorg implementation of the X Window System")
1286 (description "X.org provides an implementation of the X Window System")
1287 (license license:x11)))
1288
1289
1290 (define-public libxpm
1291 (package
1292 (name "libxpm")
1293 (version "3.5.10")
1294 (source
1295 (origin
1296 (method url-fetch)
1297 (uri (string-append
1298 "mirror://xorg/X11R7.7/src/everything/libXpm-"
1299 version
1300 ".tar.bz2"))
1301 (sha256
1302 (base32
1303 "0dd737ch4q9gr151wff1m3q2j7wf3pip4y81601xdrsh8wipxnx6"))))
1304 (build-system gnu-build-system)
1305 (inputs
1306 `(("gettext" ,gnu:gettext)
1307 ("libxt" ,libxt)
1308 ("xproto" ,xproto)
1309 ("libxext" ,libxext)
1310 ("pkg-config" ,pkg-config)))
1311 (home-page "http://www.x.org/wiki/")
1312 (synopsis "xorg implementation of the X Window System")
1313 (description "X.org provides an implementation of the X Window System")
1314 (license license:x11)))
1315
1316
1317 (define-public libxres
1318 (package
1319 (name "libxres")
1320 (version "1.0.6")
1321 (source
1322 (origin
1323 (method url-fetch)
1324 (uri (string-append
1325 "mirror://xorg/X11R7.7/src/everything/libXres-"
1326 version
1327 ".tar.bz2"))
1328 (sha256
1329 (base32
1330 "1478pm70gdi6l70r4jpkyyg2am9wv6xh53z9ibwq5cg84p4n31pz"))))
1331 (build-system gnu-build-system)
1332 (inputs
1333 `(("xproto" ,xproto)
1334 ("libxext" ,libxext)
1335 ("libx11" ,libx11)
1336 ("resourceproto" ,resourceproto)
1337 ("pkg-config" ,pkg-config)))
1338 (home-page "http://www.x.org/wiki/")
1339 (synopsis "xorg implementation of the X Window System")
1340 (description "X.org provides an implementation of the X Window System")
1341 (license license:x11)))
1342
1343
1344 (define-public libxscrnsaver
1345 (package
1346 (name "libxscrnsaver")
1347 (version "1.2.2")
1348 (source
1349 (origin
1350 (method url-fetch)
1351 (uri (string-append
1352 "mirror://xorg/X11R7.7/src/everything/libXScrnSaver-"
1353 version
1354 ".tar.bz2"))
1355 (sha256
1356 (base32
1357 "07ff4r20nkkrj7h08f9fwamds9b3imj8jz5iz6y38zqw6jkyzwcg"))))
1358 (build-system gnu-build-system)
1359 (inputs
1360 `(("libxext" ,libxext)
1361 ("libx11" ,libx11)
1362 ("scrnsaverproto" ,scrnsaverproto)
1363 ("pkg-config" ,pkg-config)))
1364 (home-page "http://www.x.org/wiki/")
1365 (synopsis "xorg implementation of the X Window System")
1366 (description "X.org provides an implementation of the X Window System")
1367 (license license:x11)))
1368
1369
1370 (define-public libxxf86dga
1371 (package
1372 (name "libxxf86dga")
1373 (version "1.1.3")
1374 (source
1375 (origin
1376 (method url-fetch)
1377 (uri (string-append
1378 "mirror://xorg/X11R7.7/src/everything/libXxf86dga-"
1379 version
1380 ".tar.bz2"))
1381 (sha256
1382 (base32
1383 "15291ddhyr54sribwbg8hxx2psgzm5gh0pgkw5yrf3zgvdsa67sm"))))
1384 (build-system gnu-build-system)
1385 (inputs
1386 `(("libx11" ,libx11)
1387 ("libxext" ,libxext)
1388 ("pkg-config" ,pkg-config)
1389 ("xf86dgaproto" ,xf86dgaproto)))
1390 (home-page "http://www.x.org/wiki/")
1391 (synopsis "xorg implementation of the X Window System")
1392 (description "X.org provides an implementation of the X Window System")
1393 (license license:x11)))
1394
1395
1396 (define-public luit
1397 (package
1398 (name "luit")
1399 (version "1.1.1")
1400 (source
1401 (origin
1402 (method url-fetch)
1403 (uri (string-append
1404 "mirror://xorg/X11R7.7/src/everything/luit-"
1405 version
1406 ".tar.bz2"))
1407 (sha256
1408 (base32
1409 "0dn694mk56x6hdk6y9ylx4f128h5jcin278gnw2gb807rf3ygc1h"))))
1410 (build-system gnu-build-system)
1411 (inputs
1412 `(("libfontenc" ,libfontenc)
1413 ("pkg-config" ,pkg-config)))
1414 (home-page "http://www.x.org/wiki/")
1415 (synopsis "xorg implementation of the X Window System")
1416 (description "X.org provides an implementation of the X Window System")
1417 (license license:x11)))
1418
1419
1420 (define-public makedepend
1421 (package
1422 (name "makedepend")
1423 (version "1.0.4")
1424 (source
1425 (origin
1426 (method url-fetch)
1427 (uri (string-append
1428 "mirror://xorg/X11R7.7/src/everything/makedepend-"
1429 version
1430 ".tar.bz2"))
1431 (sha256
1432 (base32
1433 "1zpp2b9dfvlnfj2i1mzdyn785rpl7vih5lap7kcpiv80xspbhmmb"))))
1434 (build-system gnu-build-system)
1435 (inputs
1436 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
1437 (home-page "http://www.x.org/wiki/")
1438 (synopsis "xorg implementation of the X Window System")
1439 (description "X.org provides an implementation of the X Window System")
1440 (license license:x11)))
1441
1442
1443 (define-public mkfontscale
1444 (package
1445 (name "mkfontscale")
1446 (version "1.1.0")
1447 (source
1448 (origin
1449 (method url-fetch)
1450 (uri (string-append
1451 "mirror://xorg/X11R7.7/src/everything/mkfontscale-"
1452 version
1453 ".tar.bz2"))
1454 (sha256
1455 (base32
1456 "1539h3ws66vcql6sf2831bcs0r4d9b05lcgpswkw33lvcxighmff"))))
1457 (build-system gnu-build-system)
1458 (inputs
1459 `(("zlib" ,zlib)
1460 ("xproto" ,xproto)
1461 ("freetype" ,freetype)
1462 ("libfontenc" ,libfontenc)
1463 ("pkg-config" ,pkg-config)))
1464 (home-page "http://www.x.org/wiki/")
1465 (synopsis "xorg implementation of the X Window System")
1466 (description "X.org provides an implementation of the X Window System")
1467 (license license:x11)))
1468
1469
1470 ;; The package is missing from X11R7.7.
1471 (define-public printproto
1472 (package
1473 (name "printproto")
1474 (version "1.0.5")
1475 (source
1476 (origin
1477 (method url-fetch)
1478 (uri (string-append
1479 "mirror://xorg/individual/proto/printproto-"
1480 version
1481 ".tar.bz2"))
1482 (sha256
1483 (base32
1484 "06liap8n4s25sgp27d371cc7yg9a08dxcr3pmdjp761vyin3360j"))))
1485 (build-system gnu-build-system)
1486 (inputs `(("pkg-config" ,pkg-config)))
1487 (home-page "http://www.x.org/wiki/")
1488 (synopsis "xorg implementation of the X Window System")
1489 (description "X.org provides an implementation of the X Window System")
1490 (license license:x11)))
1491
1492
1493 (define-public randrproto
1494 (package
1495 (name "randrproto")
1496 (version "1.3.2")
1497 (source
1498 (origin
1499 (method url-fetch)
1500 (uri (string-append
1501 "mirror://xorg/X11R7.7/src/everything/randrproto-"
1502 version
1503 ".tar.bz2"))
1504 (sha256
1505 (base32
1506 "0wfwcq85wbm0g5r0snc7prgki1wi3kxrxhcxinyr54n45ihh03fr"))))
1507 (build-system gnu-build-system)
1508 (inputs `(("pkg-config" ,pkg-config)))
1509 (home-page "http://www.x.org/wiki/")
1510 (synopsis "xorg implementation of the X Window System")
1511 (description "X.org provides an implementation of the X Window System")
1512 (license license:x11)))
1513
1514
1515 (define-public recordproto
1516 (package
1517 (name "recordproto")
1518 (version "1.14.2")
1519 (source
1520 (origin
1521 (method url-fetch)
1522 (uri (string-append
1523 "mirror://xorg/X11R7.7/src/everything/recordproto-"
1524 version
1525 ".tar.bz2"))
1526 (sha256
1527 (base32
1528 "0w3kgr1zabwf79bpc28dcnj0fpni6r53rpi82ngjbalj5s6m8xx7"))))
1529 (build-system gnu-build-system)
1530 (inputs `(("pkg-config" ,pkg-config)))
1531 (home-page "http://www.x.org/wiki/")
1532 (synopsis "xorg implementation of the X Window System")
1533 (description "X.org provides an implementation of the X Window System")
1534 (license license:x11)))
1535
1536
1537 (define-public renderproto
1538 (package
1539 (name "renderproto")
1540 (version "0.11.1")
1541 (source
1542 (origin
1543 (method url-fetch)
1544 (uri (string-append
1545 "mirror://xorg/X11R7.7/src/everything/renderproto-"
1546 version
1547 ".tar.bz2"))
1548 (sha256
1549 (base32
1550 "0dr5xw6s0qmqg0q5pdkb4jkdhaja0vbfqla79qh5j1xjj9dmlwq6"))))
1551 (build-system gnu-build-system)
1552 (inputs `(("pkg-config" ,pkg-config)))
1553 (home-page "http://www.x.org/wiki/")
1554 (synopsis "xorg implementation of the X Window System")
1555 (description "X.org provides an implementation of the X Window System")
1556 (license license:x11)))
1557
1558
1559 (define-public resourceproto
1560 (package
1561 (name "resourceproto")
1562 (version "1.2.0")
1563 (source
1564 (origin
1565 (method url-fetch)
1566 (uri (string-append
1567 "mirror://xorg/X11R7.7/src/everything/resourceproto-"
1568 version
1569 ".tar.bz2"))
1570 (sha256
1571 (base32
1572 "0638iyfiiyjw1hg3139pai0j6m65gkskrvd9684zgc6ydcx00riw"))))
1573 (build-system gnu-build-system)
1574 (inputs `(("pkg-config" ,pkg-config)))
1575 (home-page "http://www.x.org/wiki/")
1576 (synopsis "xorg implementation of the X Window System")
1577 (description "X.org provides an implementation of the X Window System")
1578 (license license:x11)))
1579
1580
1581 (define-public scrnsaverproto
1582 (package
1583 (name "scrnsaverproto")
1584 (version "1.2.2")
1585 (source
1586 (origin
1587 (method url-fetch)
1588 (uri (string-append
1589 "mirror://xorg/X11R7.7/src/everything/scrnsaverproto-"
1590 version
1591 ".tar.bz2"))
1592 (sha256
1593 (base32
1594 "0rfdbfwd35d761xkfifcscx56q0n56043ixlmv70r4v4l66hmdwb"))))
1595 (build-system gnu-build-system)
1596 (inputs `(("pkg-config" ,pkg-config)))
1597 (home-page "http://www.x.org/wiki/")
1598 (synopsis "xorg implementation of the X Window System")
1599 (description "X.org provides an implementation of the X Window System")
1600 (license license:x11)))
1601
1602
1603 (define-public sessreg
1604 (package
1605 (name "sessreg")
1606 (version "1.0.7")
1607 (source
1608 (origin
1609 (method url-fetch)
1610 (uri (string-append
1611 "mirror://xorg/X11R7.7/src/everything/sessreg-"
1612 version
1613 ".tar.bz2"))
1614 (sha256
1615 (base32
1616 "0lifgjxdvc6lwyjk90slddnr12fsv88ldy6qhklr5av409cfwd47"))))
1617 (build-system gnu-build-system)
1618 (inputs
1619 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
1620 (home-page "http://www.x.org/wiki/")
1621 (synopsis "xorg implementation of the X Window System")
1622 (description "X.org provides an implementation of the X Window System")
1623 (license license:x11)))
1624
1625
1626 (define-public setxkbmap
1627 (package
1628 (name "setxkbmap")
1629 (version "1.3.0")
1630 (source
1631 (origin
1632 (method url-fetch)
1633 (uri (string-append
1634 "mirror://xorg/X11R7.7/src/everything/setxkbmap-"
1635 version
1636 ".tar.bz2"))
1637 (sha256
1638 (base32
1639 "1inygpvlgc6vr5h9laxw9lnvafnccl3fy0g5n9ll28iq3yfmqc1x"))))
1640 (build-system gnu-build-system)
1641 (inputs
1642 `(("libxkbfile" ,libxkbfile)
1643 ("libx11" ,libx11)
1644 ("pkg-config" ,pkg-config)))
1645 (home-page "http://www.x.org/wiki/")
1646 (synopsis "xorg implementation of the X Window System")
1647 (description "X.org provides an implementation of the X Window System")
1648 (license license:x11)))
1649
1650
1651 (define-public smproxy
1652 (package
1653 (name "smproxy")
1654 (version "1.0.5")
1655 (source
1656 (origin
1657 (method url-fetch)
1658 (uri (string-append
1659 "mirror://xorg/X11R7.7/src/everything/smproxy-"
1660 version
1661 ".tar.bz2"))
1662 (sha256
1663 (base32
1664 "02fn5wa1gs2jap6sr9j9yk6zsvz82j8l61pf74iyqwa99q4wnb67"))))
1665 (build-system gnu-build-system)
1666 (inputs
1667 `(("libxt" ,libxt)
1668 ("libxmu" ,libxmu)
1669 ("pkg-config" ,pkg-config)))
1670 (home-page "http://www.x.org/wiki/")
1671 (synopsis "xorg implementation of the X Window System")
1672 (description "X.org provides an implementation of the X Window System")
1673 (license license:x11)))
1674
1675
1676 (define-public util-macros
1677 (package
1678 (name "util-macros")
1679 (version "1.17")
1680 (source
1681 (origin
1682 (method url-fetch)
1683 (uri (string-append
1684 "mirror://xorg/X11R7.7/src/everything/util-macros-"
1685 version
1686 ".tar.bz2"))
1687 (sha256
1688 (base32
1689 "1vbmrcn5n3wp4pyw0n4c3pyvzlc4yf7jzgngavfdq5zwfbgfsybx"))))
1690 (build-system gnu-build-system)
1691 (inputs `(("pkg-config" ,pkg-config)))
1692 (home-page "http://www.x.org/wiki/")
1693 (synopsis "xorg implementation of the X Window System")
1694 (description "X.org provides an implementation of the X Window System")
1695 (license license:x11)))
1696
1697
1698 (define-public videoproto
1699 (package
1700 (name "videoproto")
1701 (version "2.3.1")
1702 (source
1703 (origin
1704 (method url-fetch)
1705 (uri (string-append
1706 "mirror://xorg/X11R7.7/src/everything/videoproto-"
1707 version
1708 ".tar.bz2"))
1709 (sha256
1710 (base32
1711 "0nk3i6gwkqq1w8zwn7bxz344pi1dwcjrmf6hr330h7hxjcj6viry"))))
1712 (build-system gnu-build-system)
1713 (inputs `(("pkg-config" ,pkg-config)))
1714 (home-page "http://www.x.org/wiki/")
1715 (synopsis "xorg implementation of the X Window System")
1716 (description "X.org provides an implementation of the X Window System")
1717 (license license:x11)))
1718
1719
1720 (define-public windowswmproto
1721 (package
1722 (name "windowswmproto")
1723 (version "1.0.4")
1724 (source
1725 (origin
1726 (method url-fetch)
1727 (uri (string-append
1728 "mirror://xorg/X11R7.7/src/everything/windowswmproto-"
1729 version
1730 ".tar.bz2"))
1731 (sha256
1732 (base32
1733 "0syjxgy4m8l94qrm03nvn5k6bkxc8knnlld1gbllym97nvnv0ny0"))))
1734 (build-system gnu-build-system)
1735 (inputs `(("pkg-config" ,pkg-config)))
1736 (home-page "http://www.x.org/wiki/")
1737 (synopsis "xorg implementation of the X Window System")
1738 (description "X.org provides an implementation of the X Window System")
1739 (license license:x11)))
1740
1741
1742 (define-public x11perf
1743 (package
1744 (name "x11perf")
1745 (version "1.5.4")
1746 (source
1747 (origin
1748 (method url-fetch)
1749 (uri (string-append
1750 "mirror://xorg/X11R7.7/src/everything/x11perf-"
1751 version
1752 ".tar.bz2"))
1753 (sha256
1754 (base32
1755 "111iwpxhnxjiq44w96zf0kszg5zpgv1g3ayx18v4nhdzl9bqivi4"))))
1756 (build-system gnu-build-system)
1757 (inputs
1758 `(("libx11" ,libx11)
1759 ("libxft" ,libxft)
1760 ("libxmu" ,libxmu)
1761 ("libxrender" ,libxrender)
1762 ("pkg-config" ,pkg-config)))
1763 (home-page "http://www.x.org/wiki/")
1764 (synopsis "xorg implementation of the X Window System")
1765 (description "X.org provides an implementation of the X Window System")
1766 (license license:x11)))
1767
1768
1769 (define-public xauth
1770 (package
1771 (name "xauth")
1772 (version "1.0.7")
1773 (source
1774 (origin
1775 (method url-fetch)
1776 (uri (string-append
1777 "mirror://xorg/X11R7.7/src/everything/xauth-"
1778 version
1779 ".tar.bz2"))
1780 (sha256
1781 (base32
1782 "1382wdfiakgckbw1xxavzh1nm34q21b1zzy96qp7ws66xc48rxw4"))))
1783 (build-system gnu-build-system)
1784 (inputs
1785 `(("libxmu" ,libxmu)
1786 ("libxext" ,libxext)
1787 ("libxau" ,libxau)
1788 ("libx11" ,libx11)
1789 ("pkg-config" ,pkg-config)))
1790 (home-page "http://www.x.org/wiki/")
1791 (synopsis "xorg implementation of the X Window System")
1792 (description "X.org provides an implementation of the X Window System")
1793 (license license:x11)))
1794
1795
1796 (define-public xbacklight
1797 (package
1798 (name "xbacklight")
1799 (version "1.1.2")
1800 (source
1801 (origin
1802 (method url-fetch)
1803 (uri (string-append
1804 "mirror://xorg/X11R7.7/src/everything/xbacklight-"
1805 version
1806 ".tar.bz2"))
1807 (sha256
1808 (base32
1809 "02b5jfys2msla2yvg5s0knzyxg2104r25czkwd49i8g8kp804bxg"))))
1810 (build-system gnu-build-system)
1811 (inputs
1812 `(("libx11" ,libx11)
1813 ("libxrandr" ,libxrandr)
1814 ("libxrender" ,libxrender)
1815 ("pkg-config" ,pkg-config)))
1816 (home-page "http://www.x.org/wiki/")
1817 (synopsis "xorg implementation of the X Window System")
1818 (description "X.org provides an implementation of the X Window System")
1819 (license license:x11)))
1820
1821
1822 (define-public xbitmaps
1823 (package
1824 (name "xbitmaps")
1825 (version "1.1.1")
1826 (source
1827 (origin
1828 (method url-fetch)
1829 (uri (string-append
1830 "mirror://xorg/X11R7.7/src/everything/xbitmaps-"
1831 version
1832 ".tar.bz2"))
1833 (sha256
1834 (base32
1835 "178ym90kwidia6nas4qr5n5yqh698vv8r02js0r4vg3b6lsb0w9n"))))
1836 (build-system gnu-build-system)
1837 (inputs `(("pkg-config" ,pkg-config)))
1838 (home-page "http://www.x.org/wiki/")
1839 (synopsis "xorg implementation of the X Window System")
1840 (description "X.org provides an implementation of the X Window System")
1841 (license license:x11)))
1842
1843
1844 (define-public xcb-proto
1845 (package
1846 (name "xcb-proto")
1847 (version "1.7.1")
1848 (source
1849 (origin
1850 (method url-fetch)
1851 (uri (string-append
1852 "http://xcb.freedesktop.org/dist/xcb-proto-"
1853 version
1854 ".tar.bz2"))
1855 (sha256
1856 (base32
1857 "0ds4qg6slidrzyz6q9ckq0a19hn6blzpnvciy4brh741gn49jpdd"))))
1858 (build-system gnu-build-system)
1859 (inputs
1860 `(("pkg-config" ,pkg-config) ("python" ,python)))
1861 (home-page "http://www.x.org/wiki/")
1862 (synopsis "xorg implementation of the X Window System")
1863 (description "X.org provides an implementation of the X Window System")
1864 (license license:x11)))
1865
1866
1867 (define-public xcmiscproto
1868 (package
1869 (name "xcmiscproto")
1870 (version "1.2.2")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (string-append
1875 "mirror://xorg/X11R7.7/src/everything/xcmiscproto-"
1876 version
1877 ".tar.bz2"))
1878 (sha256
1879 (base32
1880 "1pyjv45wivnwap2wvsbrzdvjc5ql8bakkbkrvcv6q9bjjf33ccmi"))))
1881 (build-system gnu-build-system)
1882 (inputs `(("pkg-config" ,pkg-config)))
1883 (home-page "http://www.x.org/wiki/")
1884 (synopsis "xorg implementation of the X Window System")
1885 (description "X.org provides an implementation of the X Window System")
1886 (license license:x11)))
1887
1888
1889 (define-public xcmsdb
1890 (package
1891 (name "xcmsdb")
1892 (version "1.0.4")
1893 (source
1894 (origin
1895 (method url-fetch)
1896 (uri (string-append
1897 "mirror://xorg/X11R7.7/src/everything/xcmsdb-"
1898 version
1899 ".tar.bz2"))
1900 (sha256
1901 (base32
1902 "03ms731l3kvaldq7ycbd30j6134b61i3gbll4b2gl022wyzbjq74"))))
1903 (build-system gnu-build-system)
1904 (inputs
1905 `(("libx11" ,libx11)
1906 ("pkg-config" ,pkg-config)))
1907 (home-page "http://www.x.org/wiki/")
1908 (synopsis "xorg implementation of the X Window System")
1909 (description "X.org provides an implementation of the X Window System")
1910 (license license:x11)))
1911
1912
1913 (define-public xcursor-themes
1914 (package
1915 (name "xcursor-themes")
1916 (version "1.0.3")
1917 (source
1918 (origin
1919 (method url-fetch)
1920 (uri (string-append
1921 "mirror://xorg/X11R7.7/src/everything/xcursor-themes-"
1922 version
1923 ".tar.bz2"))
1924 (sha256
1925 (base32
1926 "1is4bak0qkkhv63mfa5l7492r475586y52yzfxyv3psppn662ilr"))))
1927 (build-system gnu-build-system)
1928 (inputs
1929 `(("libxcursor" ,libxcursor)
1930 ("pkg-config" ,pkg-config)
1931 ("xcursorgen" ,xcursorgen)))
1932 (home-page "http://www.x.org/wiki/")
1933 (synopsis "xorg implementation of the X Window System")
1934 (description "X.org provides an implementation of the X Window System")
1935 (license license:x11)))
1936
1937
1938 (define-public xcursorgen
1939 (package
1940 (name "xcursorgen")
1941 (version "1.0.5")
1942 (source
1943 (origin
1944 (method url-fetch)
1945 (uri (string-append
1946 "mirror://xorg/X11R7.7/src/everything/xcursorgen-"
1947 version
1948 ".tar.bz2"))
1949 (sha256
1950 (base32
1951 "10f5wk1326mm45gvgpf4m2p0j80fcd0i4c52zikahb91zah72wdw"))))
1952 (build-system gnu-build-system)
1953 (inputs
1954 `(("libxcursor" ,libxcursor)
1955 ("libpng" ,libpng)
1956 ("pkg-config" ,pkg-config)))
1957 (home-page "http://www.x.org/wiki/")
1958 (synopsis "xorg implementation of the X Window System")
1959 (description "X.org provides an implementation of the X Window System")
1960 (license license:x11)))
1961
1962
1963 (define-public xdpyinfo
1964 (package
1965 (name "xdpyinfo")
1966 (version "1.3.0")
1967 (source
1968 (origin
1969 (method url-fetch)
1970 (uri (string-append
1971 "mirror://xorg/X11R7.7/src/everything/xdpyinfo-"
1972 version
1973 ".tar.bz2"))
1974 (sha256
1975 (base32
1976 "0gypsvpmay3lsh3b1dg29pjxv95pkrr21d4w6ys02mrbld24kvi3"))))
1977 (build-system gnu-build-system)
1978 (inputs
1979 `(("inputproto" ,inputproto)
1980 ("libx11" ,libx11)
1981 ("libxxf86vm" ,libxxf86vm)
1982 ("libxxf86dga" ,libxxf86dga)
1983 ("libxtst" ,libxtst)
1984 ("libxrender" ,libxrender)
1985 ("libxinerama" ,libxinerama)
1986 ("libxi" ,libxi)
1987 ("libxcomposite" ,libxcomposite)
1988 ("libdmx" ,libdmx)
1989 ("pkg-config" ,pkg-config)))
1990 (home-page "http://www.x.org/wiki/")
1991 (synopsis "xorg implementation of the X Window System")
1992 (description "X.org provides an implementation of the X Window System")
1993 (license license:x11)))
1994
1995
1996 (define-public xdriinfo
1997 (package
1998 (name "xdriinfo")
1999 (version "1.0.4")
2000 (source
2001 (origin
2002 (method url-fetch)
2003 (uri (string-append
2004 "mirror://xorg/X11R7.7/src/everything/xdriinfo-"
2005 version
2006 ".tar.bz2"))
2007 (sha256
2008 (base32
2009 "076bjix941znyjmh3j5jjsnhp2gv2iq53d0ks29mvvv87cyy9iim"))))
2010 (build-system gnu-build-system)
2011 (inputs
2012 `(("mesa" ,mesa)
2013 ("libx11" ,libx11)
2014 ("pkg-config" ,pkg-config)))
2015 (home-page "http://www.x.org/wiki/")
2016 (synopsis "xorg implementation of the X Window System")
2017 (description "X.org provides an implementation of the X Window System")
2018 (license license:x11)))
2019
2020
2021 (define-public xev
2022 (package
2023 (name "xev")
2024 (version "1.2.0")
2025 (source
2026 (origin
2027 (method url-fetch)
2028 (uri (string-append
2029 "mirror://xorg/X11R7.7/src/everything/xev-"
2030 version
2031 ".tar.bz2"))
2032 (sha256
2033 (base32
2034 "13xk5z7vy87rnn4574z0jfzymdivyc7pl4axim81sx0pmdysg1ip"))))
2035 (build-system gnu-build-system)
2036 (inputs
2037 `(("libxrender" ,libxrender)
2038 ("libxrandr" ,libxrandr)
2039 ("xproto" ,xproto)
2040 ("libx11" ,libx11)
2041 ("pkg-config" ,pkg-config)))
2042 (home-page "http://www.x.org/wiki/")
2043 (synopsis "xorg implementation of the X Window System")
2044 (description "X.org provides an implementation of the X Window System")
2045 (license license:x11)))
2046
2047
2048 (define-public xextproto
2049 (package
2050 (name "xextproto")
2051 (version "7.2.1")
2052 (source
2053 (origin
2054 (method url-fetch)
2055 (uri (string-append
2056 "mirror://xorg/X11R7.7/src/everything/xextproto-"
2057 version
2058 ".tar.bz2"))
2059 (sha256
2060 (base32
2061 "06kdanbnprxvgl56l5h0lqj4b0f1fbb1ndha33mv5wvy802v2lvw"))))
2062 (build-system gnu-build-system)
2063 (inputs `(("pkg-config" ,pkg-config)))
2064 (home-page "http://www.x.org/wiki/")
2065 (synopsis "xorg implementation of the X Window System")
2066 (description "X.org provides an implementation of the X Window System")
2067 (license license:x11)))
2068
2069
2070 (define-public xf86-input-evdev
2071 (package
2072 (name "xf86-input-evdev")
2073 (version "2.7.0")
2074 (source
2075 (origin
2076 (method url-fetch)
2077 (uri (string-append
2078 "mirror://xorg/X11R7.7/src/everything/xf86-input-evdev-"
2079 version
2080 ".tar.bz2"))
2081 (sha256
2082 (base32
2083 "1ivf5n821chckrgp89mpb18zi00v1hyrkc1hr82q0x6g1kpgxq9y"))))
2084 (build-system gnu-build-system)
2085 ;; FIXME: Add required input udev once it is available.
2086 (inputs `(("pkg-config" ,pkg-config)
2087 ("xorg-server" ,xorg-server)))
2088 (home-page "http://www.x.org/wiki/")
2089 (synopsis "xorg implementation of the X Window System")
2090 (description "X.org provides an implementation of the X Window System")
2091 (license license:x11)))
2092
2093
2094 ;; FIXME: Tries to install file joystick-properties.h into ...--xorg-server-1.12.2/include/xorg
2095 (define-public xf86-input-joystick
2096 (package
2097 (name "xf86-input-joystick")
2098 (version "1.6.1")
2099 (source
2100 (origin
2101 (method url-fetch)
2102 (uri (string-append
2103 "mirror://xorg/X11R7.7/src/everything/xf86-input-joystick-"
2104 version
2105 ".tar.bz2"))
2106 (sha256
2107 (base32
2108 "1xgpkdmfw4ahjlva97gs9sllzw8nlpa8mxj59g28fxhak67mvv8x"))))
2109 (build-system gnu-build-system)
2110 (inputs `(("pkg-config" ,pkg-config)
2111 ("xorg-server" ,xorg-server)))
2112 (home-page "http://www.x.org/wiki/")
2113 (synopsis "xorg implementation of the X Window System")
2114 (description "X.org provides an implementation of the X Window System")
2115 (license license:x11)))
2116
2117
2118 (define-public xf86-input-keyboard
2119 (package
2120 (name "xf86-input-keyboard")
2121 (version "1.6.1")
2122 (source
2123 (origin
2124 (method url-fetch)
2125 (uri (string-append
2126 "mirror://xorg/X11R7.7/src/everything/xf86-input-keyboard-"
2127 version
2128 ".tar.bz2"))
2129 (sha256
2130 (base32
2131 "1hwc1bjw5mxv186xbrxiky0agfglwqg8fsxqdh4br1vzgxpck7ma"))))
2132 (build-system gnu-build-system)
2133 (inputs `(("pkg-config" ,pkg-config)
2134 ("xorg-server" ,xorg-server)))
2135 (home-page "http://www.x.org/wiki/")
2136 (synopsis "xorg implementation of the X Window System")
2137 (description "X.org provides an implementation of the X Window System")
2138 (license license:x11)))
2139
2140
2141 (define-public xf86-input-mouse
2142 (package
2143 (name "xf86-input-mouse")
2144 (version "1.7.2")
2145 (source
2146 (origin
2147 (method url-fetch)
2148 (uri (string-append
2149 "mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
2150 version
2151 ".tar.bz2"))
2152 (sha256
2153 (base32
2154 "0fs1lwnycyv3d0m6l2wrnlgvbs8qw66d93hwlnmrsswfq5bp6ark"))))
2155 (build-system gnu-build-system)
2156 (inputs `(("pkg-config" ,pkg-config)
2157 ("xorg-server" ,xorg-server)))
2158 (home-page "http://www.x.org/wiki/")
2159 (synopsis "xorg implementation of the X Window System")
2160 (description "X.org provides an implementation of the X Window System")
2161 (license license:x11)))
2162
2163
2164 (define-public xf86-input-synaptics
2165 (package
2166 (name "xf86-input-synaptics")
2167 (version "1.6.1")
2168 (source
2169 (origin
2170 (method url-fetch)
2171 (uri (string-append
2172 "mirror://xorg/X11R7.7/src/everything/xf86-input-synaptics-"
2173 version
2174 ".tar.bz2"))
2175 (sha256
2176 (base32
2177 "0g5b1s6q1dg38l8y47cwg7cs5nivwj0agmp71g273ws0lfg4bc8s"))))
2178 (build-system gnu-build-system)
2179 (inputs `(("libx11" ,libx11)
2180 ("libxi" ,libxi)
2181 ("mtdev" ,mtdev)
2182 ("pkg-config" ,pkg-config)
2183 ("xorg-server" ,xorg-server)))
2184 (home-page "http://www.x.org/wiki/")
2185 (synopsis "xorg implementation of the X Window System")
2186 (description "X.org provides an implementation of the X Window System")
2187 (license license:x11)))
2188
2189
2190 ;; FIXME: Installation tries to create ...-xorg-server-1.12.2/share/X11/xorg.conf.d
2191 (define-public xf86-input-vmmouse
2192 (package
2193 (name "xf86-input-vmmouse")
2194 (version "12.8.0")
2195 (source
2196 (origin
2197 (method url-fetch)
2198 (uri (string-append
2199 "mirror://xorg/X11R7.7/src/everything/xf86-input-vmmouse-"
2200 version
2201 ".tar.bz2"))
2202 (sha256
2203 (base32
2204 "16l65mnjb1xxav6c5q0xhhqih81bzify2c5qrhqc2j3waq5yr9m8"))))
2205 (build-system gnu-build-system)
2206 (inputs `(("pkg-config" ,pkg-config)
2207 ("xorg-server" ,xorg-server)))
2208 (home-page "http://www.x.org/wiki/")
2209 (synopsis "xorg implementation of the X Window System")
2210 (description "X.org provides an implementation of the X Window System")
2211 (license license:x11)))
2212
2213
2214 (define-public xf86-input-void
2215 (package
2216 (name "xf86-input-void")
2217 (version "1.4.0")
2218 (source
2219 (origin
2220 (method url-fetch)
2221 (uri (string-append
2222 "mirror://xorg/X11R7.7/src/everything/xf86-input-void-"
2223 version
2224 ".tar.bz2"))
2225 (sha256
2226 (base32
2227 "01bmk324fq48wydvy1qrnxbw6qz0fjd0i80g0n4cqr1c4mjmif9a"))))
2228 (build-system gnu-build-system)
2229 (inputs `(("pkg-config" ,pkg-config)
2230 ("xorg-server" ,xorg-server)))
2231 (home-page "http://www.x.org/wiki/")
2232 (synopsis "xorg implementation of the X Window System")
2233 (description "X.org provides an implementation of the X Window System")
2234 (license license:x11)))
2235
2236
2237 (define-public xf86-video-ark
2238 (package
2239 (name "xf86-video-ark")
2240 (version "0.7.4")
2241 (source
2242 (origin
2243 (method url-fetch)
2244 (uri (string-append
2245 "mirror://xorg/X11R7.7/src/everything/xf86-video-ark-"
2246 version
2247 ".tar.bz2"))
2248 (sha256
2249 (base32
2250 "194zc35ivfh3vcxcilf9nbi88c2di8kbh84x535cljlpiajdnk5x"))))
2251 (build-system gnu-build-system)
2252 (inputs `(("pkg-config" ,pkg-config)
2253 ("xorg-server" ,xorg-server)))
2254 (home-page "http://www.x.org/wiki/")
2255 (synopsis "xorg implementation of the X Window System")
2256 (description "X.org provides an implementation of the X Window System")
2257 (license license:x11)))
2258
2259
2260 (define-public xf86-video-ast
2261 (package
2262 (name "xf86-video-ast")
2263 (version "0.93.10")
2264 (source
2265 (origin
2266 (method url-fetch)
2267 (uri (string-append
2268 "mirror://xorg/X11R7.7/src/everything/xf86-video-ast-"
2269 version
2270 ".tar.bz2"))
2271 (sha256
2272 (base32
2273 "1q64z8qqa0ix3cymqiwk1s3sphd1fvvz30lvyxhgkgciygz6dm69"))))
2274 (build-system gnu-build-system)
2275 (inputs `(("pkg-config" ,pkg-config)
2276 ("xorg-server" ,xorg-server)))
2277 (home-page "http://www.x.org/wiki/")
2278 (synopsis "xorg implementation of the X Window System")
2279 (description "X.org provides an implementation of the X Window System")
2280 (license license:x11)))
2281
2282
2283 (define-public xf86-video-ati
2284 (package
2285 (name "xf86-video-ati")
2286 (version "6.14.4")
2287 (source
2288 (origin
2289 (method url-fetch)
2290 (uri (string-append
2291 "mirror://xorg/X11R7.7/src/everything/xf86-video-ati-"
2292 version
2293 ".tar.bz2"))
2294 (sha256
2295 (base32
2296 "11gg6xn65vym75769hzgzpkjsyhlkrw4zw3ncngriq7vz1g47zjg"))))
2297 (build-system gnu-build-system)
2298 (inputs `(("mesa" ,mesa)
2299 ("pkg-config" ,pkg-config)
2300 ("xxf86driproto" ,xf86driproto)
2301 ("xorg-server" ,xorg-server)))
2302 (home-page "http://www.x.org/wiki/")
2303 (synopsis "xorg implementation of the X Window System")
2304 (description "X.org provides an implementation of the X Window System")
2305 (license license:x11)))
2306
2307
2308 (define-public xf86-video-cirrus
2309 (package
2310 (name "xf86-video-cirrus")
2311 (version "1.4.0")
2312 (source
2313 (origin
2314 (method url-fetch)
2315 (uri (string-append
2316 "mirror://xorg/X11R7.7/src/everything/xf86-video-cirrus-"
2317 version
2318 ".tar.bz2"))
2319 (sha256
2320 (base32
2321 "0blnbspj4936wy46lp346s4b08dfcray6yicsxvv5b4699fzl1rb"))))
2322 (build-system gnu-build-system)
2323 (inputs `(("pkg-config" ,pkg-config)
2324 ("xorg-server" ,xorg-server)))
2325 (home-page "http://www.x.org/wiki/")
2326 (synopsis "xorg implementation of the X Window System")
2327 (description "X.org provides an implementation of the X Window System")
2328 (license license:x11)))
2329
2330
2331 ;; non-free license
2332 ;; (define-public xf86-video-dummy
2333
2334
2335 (define-public xf86-video-fbdev
2336 (package
2337 (name "xf86-video-fbdev")
2338 (version "0.4.2")
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (string-append
2343 "mirror://xorg/X11R7.7/src/everything/xf86-video-fbdev-"
2344 version
2345 ".tar.bz2"))
2346 (sha256
2347 (base32
2348 "1mc23w0bfmak5216411xh58nrs93jlxmi6l412hmqzhxnjs73clk"))))
2349 (build-system gnu-build-system)
2350 (inputs `(("pkg-config" ,pkg-config)
2351 ("xorg-server" ,xorg-server)))
2352 (home-page "http://www.x.org/wiki/")
2353 (synopsis "xorg implementation of the X Window System")
2354 (description "X.org provides an implementation of the X Window System")
2355 (license license:x11)))
2356
2357
2358 ;; Compilation errors: Assembler messages operand size mismatch etc.
2359 ;; (define-public xf86-video-geode
2360 ;; (package
2361 ;; (name "xf86-video-geode")
2362 ;; (version "2.11.13")
2363 ;; (source
2364 ;; (origin
2365 ;; (method url-fetch)
2366 ;; (uri (string-append
2367 ;; "mirror://xorg/X11R7.7/src/everything/xf86-video-geode-"
2368 ;; version
2369 ;; ".tar.bz2"))
2370 ;; (sha256
2371 ;; (base32
2372 ;; "09p2cjd2fb7h32k9qs4wp7qvhfn2zv454spv5mfplv7w2jis4863"))))
2373 ;; (build-system gnu-build-system)
2374 ;; (inputs `(("pkg-config" ,pkg-config)
2375 ;; ("xorg-server" ,xorg-server)))
2376 ;; (home-page "http://www.x.org/wiki/")
2377 ;; (synopsis "xorg implementation of the X Window System")
2378 ;; (description "X.org provides an implementation of the X Window System")
2379 ;; (license license:x11)))
2380
2381
2382 ;; Driver for obsolete graphics cards, depends on libglide:
2383 ;; http://sourceforge.net/projects/glide/ ,
2384 ;; last updated in 2003, and which does not compile out of the box any more.
2385 ;; (define-public xf86-video-glide
2386 ;; (package
2387 ;; (name "xf86-video-glide")
2388 ;; (version "1.2.0")
2389 ;; (source
2390 ;; (origin
2391 ;; (method url-fetch)
2392 ;; (uri (string-append
2393 ;; "mirror://xorg/X11R7.7/src/everything/xf86-video-glide-"
2394 ;; version
2395 ;; ".tar.bz2"))
2396 ;; (sha256
2397 ;; (base32
2398 ;; "0byapm9mnpqk3wijfnnan3d22ii5cw6dmg4xn1625iiz89j5vs1l"))))
2399 ;; (build-system gnu-build-system)
2400 ;; (inputs `(("pkg-config" ,pkg-config)
2401 ;; ("xorg-server" ,xorg-server)))
2402 ;; (home-page "http://www.x.org/wiki/")
2403 ;; (synopsis "xorg implementation of the X Window System")
2404 ;; (description "X.org provides an implementation of the X Window System")
2405 ;; (license license:x11)))
2406
2407
2408 (define-public xf86-video-glint
2409 (package
2410 (name "xf86-video-glint")
2411 (version "1.2.7")
2412 (source
2413 (origin
2414 (method url-fetch)
2415 (uri (string-append
2416 "mirror://xorg/X11R7.7/src/everything/xf86-video-glint-"
2417 version
2418 ".tar.bz2"))
2419 (sha256
2420 (base32
2421 "0nf36jryabpncqq4m6sfsnmzk00f7gvfmjnl8l8sfy7w6sa6iacs"))))
2422 (build-system gnu-build-system)
2423 (inputs `(("pkg-config" ,pkg-config)
2424 ("xf86dgaproto" ,xf86dgaproto)
2425 ("xorg-server" ,xorg-server)))
2426 (home-page "http://www.x.org/wiki/")
2427 (synopsis "xorg implementation of the X Window System")
2428 (description "X.org provides an implementation of the X Window System")
2429 (license license:x11)))
2430
2431
2432 (define-public xf86-video-i128
2433 (package
2434 (name "xf86-video-i128")
2435 (version "1.3.5")
2436 (source
2437 (origin
2438 (method url-fetch)
2439 (uri (string-append
2440 "mirror://xorg/X11R7.7/src/everything/xf86-video-i128-"
2441 version
2442 ".tar.bz2"))
2443 (sha256
2444 (base32
2445 "1sik8ck410hb2885vy7rlc590hw5br8lr2fzxgmv55jyawgfpv9y"))))
2446 (build-system gnu-build-system)
2447 (inputs `(("pkg-config" ,pkg-config)
2448 ("xorg-server" ,xorg-server)))
2449 (home-page "http://www.x.org/wiki/")
2450 (synopsis "xorg implementation of the X Window System")
2451 (description "X.org provides an implementation of the X Window System")
2452 (license license:x11)))
2453
2454
2455 (define-public xf86-video-intel
2456 (package
2457 (name "xf86-video-intel")
2458 (version "2.19.0")
2459 (source
2460 (origin
2461 (method url-fetch)
2462 (uri (string-append
2463 "mirror://xorg/X11R7.7/src/everything/xf86-video-intel-"
2464 version
2465 ".tar.bz2"))
2466 (sha256
2467 (base32
2468 "1g742szymajh88a5dw08sxcr45bmxgc4w3m6hddv9qscn5hks4rj"))))
2469 (build-system gnu-build-system)
2470 (inputs `(("libdrm" ,libdrm)
2471 ("libx11" ,libx11)
2472 ("pkg-config" ,pkg-config)
2473 ("xorg-server" ,xorg-server)))
2474 (home-page "http://www.x.org/wiki/")
2475 (synopsis "xorg implementation of the X Window System")
2476 (description "X.org provides an implementation of the X Window System")
2477 (license license:x11)))
2478
2479
2480 (define-public xf86-video-mach64
2481 (package
2482 (name "xf86-video-mach64")
2483 (version "6.9.1")
2484 (source
2485 (origin
2486 (method url-fetch)
2487 (uri (string-append
2488 "mirror://xorg/X11R7.7/src/everything/xf86-video-mach64-"
2489 version
2490 ".tar.bz2"))
2491 (sha256
2492 (base32
2493 "0kl3kvpc2ny48z89313i9fi4cxzwb2pllvxcr9j5ly680ygx8slz"))))
2494 (build-system gnu-build-system)
2495 (inputs `(("mesa" ,mesa)
2496 ("pkg-config" ,pkg-config)
2497 ("xf86driproto" ,xf86driproto)
2498 ("xorg-server" ,xorg-server)))
2499 (home-page "http://www.x.org/wiki/")
2500 (synopsis "xorg implementation of the X Window System")
2501 (description "X.org provides an implementation of the X Window System")
2502 (license license:x11)))
2503
2504
2505 (define-public xf86-video-mga
2506 (package
2507 (name "xf86-video-mga")
2508 (version "1.5.0")
2509 (source
2510 (origin
2511 (method url-fetch)
2512 (uri (string-append
2513 "mirror://xorg/X11R7.7/src/everything/xf86-video-mga-"
2514 version
2515 ".tar.bz2"))
2516 (sha256
2517 (base32
2518 "03l3wz5kz0hmxmzqqbkgn7pf9d956jlag04rb701a0fr1mw3v66a"))))
2519 (build-system gnu-build-system)
2520 (inputs `(("mesa" ,mesa)
2521 ("pkg-config" ,pkg-config)
2522 ("xf86driproto" ,xf86driproto)
2523 ("xorg-server" ,xorg-server)))
2524 (home-page "http://www.x.org/wiki/")
2525 (synopsis "xorg implementation of the X Window System")
2526 (description "X.org provides an implementation of the X Window System")
2527 (license license:x11)))
2528
2529
2530 (define-public xf86-video-neomagic
2531 (package
2532 (name "xf86-video-neomagic")
2533 (version "1.2.6")
2534 (source
2535 (origin
2536 (method url-fetch)
2537 (uri (string-append
2538 "mirror://xorg/X11R7.7/src/everything/xf86-video-neomagic-"
2539 version
2540 ".tar.bz2"))
2541 (sha256
2542 (base32
2543 "124qci48xrk0w2jy91n7vqs7s6q397zyiqqszhmkx6ld7six57mi"))))
2544 (build-system gnu-build-system)
2545 (inputs `(("pkg-config" ,pkg-config)
2546 ("xf86dgaproto" ,xf86dgaproto)
2547 ("xorg-server" ,xorg-server)))
2548 (home-page "http://www.x.org/wiki/")
2549 (synopsis "xorg implementation of the X Window System")
2550 (description "X.org provides an implementation of the X Window System")
2551 (license license:x11)))
2552
2553
2554 (define-public xf86-video-newport
2555 (package
2556 (name "xf86-video-newport")
2557 (version "0.2.4")
2558 (source
2559 (origin
2560 (method url-fetch)
2561 (uri (string-append
2562 "mirror://xorg/X11R7.7/src/everything/xf86-video-newport-"
2563 version
2564 ".tar.bz2"))
2565 (sha256
2566 (base32
2567 "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
2568 (build-system gnu-build-system)
2569 (inputs `(("pkg-config" ,pkg-config)
2570 ("xorg-server" ,xorg-server)))
2571 (home-page "http://www.x.org/wiki/")
2572 (synopsis "xorg implementation of the X Window System")
2573 (description "X.org provides an implementation of the X Window System")
2574 (license license:x11)))
2575
2576
2577 (define-public xf86-video-nv
2578 (package
2579 (name "xf86-video-nv")
2580 (version "2.1.18")
2581 (source
2582 (origin
2583 (method url-fetch)
2584 (uri (string-append
2585 "mirror://xorg/X11R7.7/src/everything/xf86-video-nv-"
2586 version
2587 ".tar.bz2"))
2588 (sha256
2589 (base32
2590 "05glbi9jc7j9nm4sf4qvl3z87s48ibm3i283lqz85kbphg62dxvc"))))
2591 (build-system gnu-build-system)
2592 (inputs `(("pkg-config" ,pkg-config)
2593 ("xorg-server" ,xorg-server)))
2594 (home-page "http://www.x.org/wiki/")
2595 (synopsis "xorg implementation of the X Window System")
2596 (description "X.org provides an implementation of the X Window System")
2597 (license license:x11)))
2598
2599
2600 (define-public xf86-video-openchrome
2601 (package
2602 (name "xf86-video-openchrome")
2603 (version "0.2.906")
2604 (source
2605 (origin
2606 (method url-fetch)
2607 (uri (string-append
2608 "mirror://xorg/X11R7.7/src/everything/xf86-video-openchrome-"
2609 version
2610 ".tar.bz2"))
2611 (sha256
2612 (base32
2613 "0hgzn1r7ig94xbr9dvq0bp1nxqlfp2ki8823jca3f22a2kf8wmg7"))))
2614 (build-system gnu-build-system)
2615 (inputs `(("libx11" ,libx11)
2616 ("libxext" ,libxext)
2617 ("libxvmc" ,libxvmc)
2618 ("mesa" ,mesa)
2619 ("pkg-config" ,pkg-config)
2620 ("xf86driproto" ,xf86driproto)
2621 ("xorg-server" ,xorg-server)))
2622 (home-page "http://www.x.org/wiki/")
2623 (synopsis "xorg implementation of the X Window System")
2624 (description "X.org provides an implementation of the X Window System")
2625 (license license:x11)))
2626
2627
2628 (define-public xf86-video-r128
2629 (package
2630 (name "xf86-video-r128")
2631 (version "6.8.2")
2632 (source
2633 (origin
2634 (method url-fetch)
2635 (uri (string-append
2636 "mirror://xorg/X11R7.7/src/everything/xf86-video-r128-"
2637 version
2638 ".tar.bz2"))
2639 (sha256
2640 (base32
2641 "1c84x40k9qz9dnf5qs6nnjcgz7px6mpc3rbk8mj62zhp7mf16hbv"))))
2642 (build-system gnu-build-system)
2643 (inputs `(("mesa" ,mesa)
2644 ("pkg-config" ,pkg-config)
2645 ("xf86driproto" ,xf86driproto)
2646 ("xorg-server" ,xorg-server)))
2647 (home-page "http://www.x.org/wiki/")
2648 (synopsis "xorg implementation of the X Window System")
2649 (description "X.org provides an implementation of the X Window System")
2650 (license license:x11)))
2651
2652
2653 (define-public xf86-video-savage
2654 (package
2655 (name "xf86-video-savage")
2656 (version "2.3.4")
2657 (source
2658 (origin
2659 (method url-fetch)
2660 (uri (string-append
2661 "mirror://xorg/X11R7.7/src/everything/xf86-video-savage-"
2662 version
2663 ".tar.bz2"))
2664 (sha256
2665 (base32
2666 "0jdy4wv3k3ylx3lajjcbsg37z2hf6366a1jvv16sv1ln6dk6lris"))))
2667 (build-system gnu-build-system)
2668 (inputs `(("mesa" ,mesa)
2669 ("pkg-config" ,pkg-config)
2670 ("xf86driproto" ,xf86driproto)
2671 ("xorg-server" ,xorg-server)))
2672 (home-page "http://www.x.org/wiki/")
2673 (synopsis "xorg implementation of the X Window System")
2674 (description "X.org provides an implementation of the X Window System")
2675 (license license:x11)))
2676
2677
2678 (define-public xf86-video-siliconmotion
2679 (package
2680 (name "xf86-video-siliconmotion")
2681 (version "1.7.6")
2682 (source
2683 (origin
2684 (method url-fetch)
2685 (uri (string-append
2686 "mirror://xorg/X11R7.7/src/everything/xf86-video-siliconmotion-"
2687 version
2688 ".tar.bz2"))
2689 (sha256
2690 (base32
2691 "01sdl6ky1vmvmfgx2d44i35rqafi0z07xdy40cvindcr2k91p7x5"))))
2692 (build-system gnu-build-system)
2693 (inputs `(("pkg-config" ,pkg-config)
2694 ("xorg-server" ,xorg-server)))
2695 (home-page "http://www.x.org/wiki/")
2696 (synopsis "xorg implementation of the X Window System")
2697 (description "X.org provides an implementation of the X Window System")
2698 (license license:x11)))
2699
2700
2701 (define-public xf86-video-sis
2702 (package
2703 (name "xf86-video-sis")
2704 (version "0.10.4")
2705 (source
2706 (origin
2707 (method url-fetch)
2708 (uri (string-append
2709 "mirror://xorg/X11R7.7/src/everything/xf86-video-sis-"
2710 version
2711 ".tar.bz2"))
2712 (sha256
2713 (base32
2714 "03diq0l93lfsipmwkpdb2ysgbxxryl6yakpghzc3fksjxa01112f"))))
2715 (build-system gnu-build-system)
2716 (inputs `(("mesa" ,mesa)
2717 ("pkg-config" ,pkg-config)
2718 ("xf86dgaproto" ,xf86dgaproto)
2719 ("xf86driproto" ,xf86driproto)
2720 ("xorg-server" ,xorg-server)))
2721 (home-page "http://www.x.org/wiki/")
2722 (synopsis "xorg implementation of the X Window System")
2723 (description "X.org provides an implementation of the X Window System")
2724 (license license:bsd-3)))
2725
2726
2727 (define-public xf86-video-suncg6
2728 (package
2729 (name "xf86-video-suncg6")
2730 (version "1.1.1")
2731 (source
2732 (origin
2733 (method url-fetch)
2734 (uri (string-append
2735 "mirror://xorg/X11R7.7/src/everything/xf86-video-suncg6-"
2736 version
2737 ".tar.bz2"))
2738 (sha256
2739 (base32
2740 "07w0hm63fiy5l3cpcjsl0ig8z84z9r36xm0cmnpiv3g75dy6q8fi"))))
2741 (build-system gnu-build-system)
2742 (inputs `(("pkg-config" ,pkg-config)
2743 ("xorg-server" ,xorg-server)))
2744 (home-page "http://www.x.org/wiki/")
2745 (synopsis "xorg implementation of the X Window System")
2746 (description "X.org provides an implementation of the X Window System")
2747 (license license:x11)))
2748
2749
2750 (define-public xf86-video-sunffb
2751 (package
2752 (name "xf86-video-sunffb")
2753 (version "1.2.1")
2754 (source
2755 (origin
2756 (method url-fetch)
2757 (uri (string-append
2758 "mirror://xorg/X11R7.7/src/everything/xf86-video-sunffb-"
2759 version
2760 ".tar.bz2"))
2761 (sha256
2762 (base32
2763 "04byax4sc1fn183vyyq0q11q730k16h2by4ggjky7s36wgv7ldzx"))))
2764 (build-system gnu-build-system)
2765 (inputs `(("pkg-config" ,pkg-config)
2766 ("xorg-server" ,xorg-server)))
2767 (home-page "http://www.x.org/wiki/")
2768 (synopsis "xorg implementation of the X Window System")
2769 (description "X.org provides an implementation of the X Window System")
2770 (license license:x11)))
2771
2772
2773 (define-public xf86-video-tdfx
2774 (package
2775 (name "xf86-video-tdfx")
2776 (version "1.4.4")
2777 (source
2778 (origin
2779 (method url-fetch)
2780 (uri (string-append
2781 "mirror://xorg/X11R7.7/src/everything/xf86-video-tdfx-"
2782 version
2783 ".tar.bz2"))
2784 (sha256
2785 (base32
2786 "124gsi30rj547jjd7gvv7xykfnwlyrxw0gcacamby7pvl3g33fg0"))))
2787 (build-system gnu-build-system)
2788 (inputs `(("mesa" ,mesa)
2789 ("pkg-config" ,pkg-config)
2790 ("xf86driproto" ,xf86driproto)
2791 ("xorg-server" ,xorg-server)))
2792 (home-page "http://www.x.org/wiki/")
2793 (synopsis "xorg implementation of the X Window System")
2794 (description "X.org provides an implementation of the X Window System")
2795 (license license:x11)))
2796
2797
2798 (define-public xf86-video-tga
2799 (package
2800 (name "xf86-video-tga")
2801 (version "1.2.1")
2802 (source
2803 (origin
2804 (method url-fetch)
2805 (uri (string-append
2806 "mirror://xorg/X11R7.7/src/everything/xf86-video-tga-"
2807 version
2808 ".tar.bz2"))
2809 (sha256
2810 (base32
2811 "0mdqrn02zzkdnmhg4vh9djaawg6b2p82g5qbj66z8b30yr77b93h"))))
2812 (build-system gnu-build-system)
2813 (inputs `(("pkg-config" ,pkg-config)
2814 ("xf86dgaproto" ,xf86dgaproto)
2815 ("xorg-server" ,xorg-server)))
2816 (home-page "http://www.x.org/wiki/")
2817 (synopsis "xorg implementation of the X Window System")
2818 (description "X.org provides an implementation of the X Window System")
2819 (license license:x11)))
2820
2821
2822 (define-public xf86-video-trident
2823 (package
2824 (name "xf86-video-trident")
2825 (version "1.3.5")
2826 (source
2827 (origin
2828 (method url-fetch)
2829 (uri (string-append
2830 "mirror://xorg/X11R7.7/src/everything/xf86-video-trident-"
2831 version
2832 ".tar.bz2"))
2833 (sha256
2834 (base32
2835 "02y5pzdp0a1c12jr8gghbrzgbyfbgq67x7kd7n4f323pmf8x1csb"))))
2836 (build-system gnu-build-system)
2837 (inputs `(("pkg-config" ,pkg-config)
2838 ("xf86dgaproto" ,xf86dgaproto)
2839 ("xorg-server" ,xorg-server)))
2840 (home-page "http://www.x.org/wiki/")
2841 (synopsis "xorg implementation of the X Window System")
2842 (description "X.org provides an implementation of the X Window System")
2843 (license license:x11)))
2844
2845
2846 ;; no license
2847 ;; (define-public xf86-video-v4l
2848
2849
2850 (define-public xf86-video-vesa
2851 (package
2852 (name "xf86-video-vesa")
2853 (version "2.3.1")
2854 (source
2855 (origin
2856 (method url-fetch)
2857 (uri (string-append
2858 "mirror://xorg/X11R7.7/src/everything/xf86-video-vesa-"
2859 version
2860 ".tar.bz2"))
2861 (sha256
2862 (base32
2863 "0wqms28kkz2fvghqhqwp6w8zj7k5cgwnhzvkc7j4v268bf6h78g4"))))
2864 (build-system gnu-build-system)
2865 (inputs `(("pkg-config" ,pkg-config)
2866 ("xorg-server" ,xorg-server)))
2867 (home-page "http://www.x.org/wiki/")
2868 (synopsis "xorg implementation of the X Window System")
2869 (description "X.org provides an implementation of the X Window System")
2870 (license license:x11)))
2871
2872
2873 (define-public xf86-video-vmware
2874 (package
2875 (name "xf86-video-vmware")
2876 (version "12.0.2")
2877 (source
2878 (origin
2879 (method url-fetch)
2880 (uri (string-append
2881 "mirror://xorg/X11R7.7/src/everything/xf86-video-vmware-"
2882 version
2883 ".tar.bz2"))
2884 (sha256
2885 (base32
2886 "0isiwx516gww8hfk3vy7js83yziyjym9mq2zjadyq1a8v5gqf9y8"))))
2887 (build-system gnu-build-system)
2888 (inputs `(("libx11" ,libx11)
2889 ("libxext" ,libxext)
2890 ("pkg-config" ,pkg-config)
2891 ("xorg-server" ,xorg-server)))
2892 (home-page "http://www.x.org/wiki/")
2893 (synopsis "xorg implementation of the X Window System")
2894 (description "X.org provides an implementation of the X Window System")
2895 (license license:x11)))
2896
2897
2898 (define-public xf86-video-voodoo
2899 (package
2900 (name "xf86-video-voodoo")
2901 (version "1.2.4")
2902 (source
2903 (origin
2904 (method url-fetch)
2905 (uri (string-append
2906 "mirror://xorg/X11R7.7/src/everything/xf86-video-voodoo-"
2907 version
2908 ".tar.bz2"))
2909 (sha256
2910 (base32
2911 "0ha748yz92yzn6hp2rhin3il8f4j2rs4vkgdvqkagnv1ryxkh0ph"))))
2912 (build-system gnu-build-system)
2913 (inputs `(("pkg-config" ,pkg-config)
2914 ("xf86dgaproto" ,xf86dgaproto)
2915 ("xorg-server" ,xorg-server)))
2916 (home-page "http://www.x.org/wiki/")
2917 (synopsis "xorg implementation of the X Window System")
2918 (description "X.org provides an implementation of the X Window System")
2919 (license license:x11)))
2920
2921
2922 ;; Only relevant for the frame buffer on BSD systems.
2923 ;; (define-public xf86-video-wsfb
2924
2925
2926 (define-public xf86bigfontproto
2927 (package
2928 (name "xf86bigfontproto")
2929 (version "1.2.0")
2930 (source
2931 (origin
2932 (method url-fetch)
2933 (uri (string-append
2934 "mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-"
2935 version
2936 ".tar.bz2"))
2937 (sha256
2938 (base32
2939 "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
2940 (build-system gnu-build-system)
2941 (home-page "http://www.x.org/wiki/")
2942 (synopsis "xorg implementation of the X Window System")
2943 (description "X.org provides an implementation of the X Window System")
2944 (license license:x11)))
2945
2946
2947 (define-public xf86dgaproto
2948 (package
2949 (name "xf86dgaproto")
2950 (version "2.1")
2951 (source
2952 (origin
2953 (method url-fetch)
2954 (uri (string-append
2955 "mirror://xorg/X11R7.7/src/everything/xf86dgaproto-"
2956 version
2957 ".tar.bz2"))
2958 (sha256
2959 (base32
2960 "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
2961 (build-system gnu-build-system)
2962 (home-page "http://www.x.org/wiki/")
2963 (synopsis "xorg implementation of the X Window System")
2964 (description "X.org provides an implementation of the X Window System")
2965 (license license:x11)))
2966
2967
2968 (define-public xf86driproto
2969 (package
2970 (name "xf86driproto")
2971 (version "2.1.1")
2972 (source
2973 (origin
2974 (method url-fetch)
2975 (uri (string-append
2976 "mirror://xorg/X11R7.7/src/everything/xf86driproto-"
2977 version
2978 ".tar.bz2"))
2979 (sha256
2980 (base32
2981 "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
2982 (build-system gnu-build-system)
2983 (home-page "http://www.x.org/wiki/")
2984 (synopsis "xorg implementation of the X Window System")
2985 (description "X.org provides an implementation of the X Window System")
2986 (license license:x11)))
2987
2988
2989 (define-public xf86vidmodeproto
2990 (package
2991 (name "xf86vidmodeproto")
2992 (version "2.3.1")
2993 (source
2994 (origin
2995 (method url-fetch)
2996 (uri (string-append
2997 "mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-"
2998 version
2999 ".tar.bz2"))
3000 (sha256
3001 (base32
3002 "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
3003 (build-system gnu-build-system)
3004 (home-page "http://www.x.org/wiki/")
3005 (synopsis "xorg implementation of the X Window System")
3006 (description "X.org provides an implementation of the X Window System")
3007 (license license:x11)))
3008
3009
3010 (define-public xgamma
3011 (package
3012 (name "xgamma")
3013 (version "1.0.5")
3014 (source
3015 (origin
3016 (method url-fetch)
3017 (uri (string-append
3018 "mirror://xorg/X11R7.7/src/everything/xgamma-"
3019 version
3020 ".tar.bz2"))
3021 (sha256
3022 (base32
3023 "0463sawps86jnxn121ramsz4sicy3az5wa5wsq4rqm8dm3za48p3"))))
3024 (build-system gnu-build-system)
3025 (inputs
3026 `(("libxxf86vm" ,libxxf86vm)
3027 ("libx11" ,libx11)
3028 ("pkg-config" ,pkg-config)))
3029 (home-page "http://www.x.org/wiki/")
3030 (synopsis "xorg implementation of the X Window System")
3031 (description "X.org provides an implementation of the X Window System")
3032 (license license:x11)))
3033
3034
3035 (define-public xhost
3036 (package
3037 (name "xhost")
3038 (version "1.0.5")
3039 (source
3040 (origin
3041 (method url-fetch)
3042 (uri (string-append
3043 "mirror://xorg/X11R7.7/src/everything/xhost-"
3044 version
3045 ".tar.bz2"))
3046 (sha256
3047 (base32
3048 "0l483y6wfrjh37j16b41kpi2nc7ss5rvndafpbaylrs87ygx2w18"))))
3049 (build-system gnu-build-system)
3050 (inputs
3051 `(("libxmu" ,libxmu)
3052 ("libxau" ,libxau)
3053 ("libx11" ,libx11)
3054 ("pkg-config" ,pkg-config)))
3055 (home-page "http://www.x.org/wiki/")
3056 (synopsis "xorg implementation of the X Window System")
3057 (description "X.org provides an implementation of the X Window System")
3058 (license license:x11)))
3059
3060
3061 (define-public xineramaproto
3062 (package
3063 (name "xineramaproto")
3064 (version "1.2.1")
3065 (source
3066 (origin
3067 (method url-fetch)
3068 (uri (string-append
3069 "mirror://xorg/X11R7.7/src/everything/xineramaproto-"
3070 version
3071 ".tar.bz2"))
3072 (sha256
3073 (base32
3074 "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
3075 (build-system gnu-build-system)
3076 (inputs `(("pkg-config" ,pkg-config)))
3077 (home-page "http://www.x.org/wiki/")
3078 (synopsis "xorg implementation of the X Window System")
3079 (description "X.org provides an implementation of the X Window System")
3080 (license license:x11)))
3081
3082
3083 (define-public xinput
3084 (package
3085 (name "xinput")
3086 (version "1.6.0")
3087 (source
3088 (origin
3089 (method url-fetch)
3090 (uri (string-append
3091 "mirror://xorg/X11R7.7/src/everything/xinput-"
3092 version
3093 ".tar.bz2"))
3094 (sha256
3095 (base32
3096 "0zl4cdgnzh9shz20yn7hz889v4nkbyqwx0nb7dh6arn7abchgc2a"))))
3097 (build-system gnu-build-system)
3098 (inputs
3099 `(("libxrender" ,libxrender)
3100 ("libxrandr" ,libxrandr)
3101 ("libxinerama" ,libxinerama)
3102 ("libxi" ,libxi)
3103 ("libx11" ,libx11)
3104 ("inputproto" ,inputproto)
3105 ("pkg-config" ,pkg-config)))
3106 (home-page "http://www.x.org/wiki/")
3107 (synopsis "xorg implementation of the X Window System")
3108 (description "X.org provides an implementation of the X Window System")
3109 (license license:x11)))
3110
3111
3112 (define-public xkbcomp
3113 (package
3114 (name "xkbcomp")
3115 (version "1.2.4")
3116 (source
3117 (origin
3118 (method url-fetch)
3119 (uri (string-append
3120 "mirror://xorg/X11R7.7/src/everything/xkbcomp-"
3121 version
3122 ".tar.bz2"))
3123 (sha256
3124 (base32
3125 "0bas1d2wjiy5zy9d0g92d2p9pwv4aapfbfidi7hxy8ax8jmwkl4i"))))
3126 (build-system gnu-build-system)
3127 (inputs
3128 `(("xproto" ,xproto)
3129 ("libxkbfile" ,libxkbfile)
3130 ("libx11" ,libx11)
3131 ("pkg-config" ,pkg-config)))
3132 (home-page "http://www.x.org/wiki/")
3133 (synopsis "xorg implementation of the X Window System")
3134 (description "X.org provides an implementation of the X Window System")
3135 (license license:x11)))
3136
3137
3138 (define-public xkbevd
3139 (package
3140 (name "xkbevd")
3141 (version "1.1.3")
3142 (source
3143 (origin
3144 (method url-fetch)
3145 (uri (string-append
3146 "mirror://xorg/X11R7.7/src/everything/xkbevd-"
3147 version
3148 ".tar.bz2"))
3149 (sha256
3150 (base32
3151 "05h1xcnbalndbrryyqs8wzy9h3wz655vc0ymhlk2q4aik17licjm"))))
3152 (build-system gnu-build-system)
3153 (inputs
3154 `(("libxkbfile" ,libxkbfile)
3155 ("libx11" ,libx11)
3156 ("pkg-config" ,pkg-config)))
3157 (home-page "http://www.x.org/wiki/")
3158 (synopsis "xorg implementation of the X Window System")
3159 (description "X.org provides an implementation of the X Window System")
3160 (license license:x11)))
3161
3162
3163 (define-public xkbutils
3164 (package
3165 (name "xkbutils")
3166 (version "1.0.3")
3167 (source
3168 (origin
3169 (method url-fetch)
3170 (uri (string-append
3171 "mirror://xorg/X11R7.7/src/everything/xkbutils-"
3172 version
3173 ".tar.bz2"))
3174 (sha256
3175 (base32
3176 "1ga913pw6chssf2016kjyjl6ar2lj83pa497w97ak2kq603sy2g4"))))
3177 (build-system gnu-build-system)
3178 (inputs
3179 `(("libxt" ,libxt)
3180 ("xproto" ,xproto)
3181 ("libxaw" ,libxaw)
3182 ("inputproto" ,inputproto)
3183 ("pkg-config" ,pkg-config)))
3184 (home-page "http://www.x.org/wiki/")
3185 (synopsis "xorg implementation of the X Window System")
3186 (description "X.org provides an implementation of the X Window System")
3187 (license license:x11)))
3188
3189
3190 (define-public xkeyboard-config
3191 (package
3192 (name "xkeyboard-config")
3193 (version "2.6")
3194 (source
3195 (origin
3196 (method url-fetch)
3197 (uri (string-append
3198 "mirror://xorg/X11R7.7/src/everything/xkeyboard-config-"
3199 version
3200 ".tar.bz2"))
3201 (sha256
3202 (base32
3203 "1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
3204 (build-system gnu-build-system)
3205 (inputs
3206 `(("gettext" ,gnu:gettext)
3207 ("intltool" ,intltool)
3208 ("libx11" ,libx11)
3209 ("pkg-config" ,pkg-config)
3210 ("xkbcomp" ,xkbcomp)))
3211 (home-page "http://www.x.org/wiki/")
3212 (synopsis "xorg implementation of the X Window System")
3213 (description "X.org provides an implementation of the X Window System")
3214 (license license:x11)))
3215
3216
3217 (define-public xkill
3218 (package
3219 (name "xkill")
3220 (version "1.0.3")
3221 (source
3222 (origin
3223 (method url-fetch)
3224 (uri (string-append
3225 "mirror://xorg/X11R7.7/src/everything/xkill-"
3226 version
3227 ".tar.bz2"))
3228 (sha256
3229 (base32
3230 "1ac110qbb9a4x1dim3vaghvdk3jc708i2p3f4rmag33458khg0xx"))))
3231 (build-system gnu-build-system)
3232 (inputs
3233 `(("libxmu" ,libxmu)
3234 ("libx11" ,libx11)
3235 ("pkg-config" ,pkg-config)))
3236 (home-page "http://www.x.org/wiki/")
3237 (synopsis "xorg implementation of the X Window System")
3238 (description "X.org provides an implementation of the X Window System")
3239 (license license:x11)))
3240
3241
3242 (define-public xlsatoms
3243 (package
3244 (name "xlsatoms")
3245 (version "1.1.1")
3246 (source
3247 (origin
3248 (method url-fetch)
3249 (uri (string-append
3250 "mirror://xorg/X11R7.7/src/everything/xlsatoms-"
3251 version
3252 ".tar.bz2"))
3253 (sha256
3254 (base32
3255 "1y9nfl8s7njxbnci8c20j986xixharasgg40vdw92y593j6dk2rv"))))
3256 (build-system gnu-build-system)
3257 (inputs
3258 `(("libxcb" ,libxcb)
3259 ("pkg-config" ,pkg-config)))
3260 (home-page "http://www.x.org/wiki/")
3261 (synopsis "xorg implementation of the X Window System")
3262 (description "X.org provides an implementation of the X Window System")
3263 (license license:x11)))
3264
3265
3266 (define-public xlsclients
3267 (package
3268 (name "xlsclients")
3269 (version "1.1.2")
3270 (source
3271 (origin
3272 (method url-fetch)
3273 (uri (string-append
3274 "mirror://xorg/X11R7.7/src/everything/xlsclients-"
3275 version
3276 ".tar.bz2"))
3277 (sha256
3278 (base32
3279 "1l97j15mg4wfzpm81wlpzagfjff7v4fwn7s2z2rpksk3gfcg7r8w"))))
3280 (build-system gnu-build-system)
3281 (inputs
3282 `(("libxcb" ,libxcb)
3283 ("pkg-config" ,pkg-config)))
3284 (home-page "http://www.x.org/wiki/")
3285 (synopsis "xorg implementation of the X Window System")
3286 (description "X.org provides an implementation of the X Window System")
3287 (license license:x11)))
3288
3289
3290 (define-public xmodmap
3291 (package
3292 (name "xmodmap")
3293 (version "1.0.7")
3294 (source
3295 (origin
3296 (method url-fetch)
3297 (uri (string-append
3298 "mirror://xorg/X11R7.7/src/everything/xmodmap-"
3299 version
3300 ".tar.bz2"))
3301 (sha256
3302 (base32
3303 "1dg47lay4vhrl9mfq3cfc6741a0m2n8wd4ljagd21ix3qklys8pg"))))
3304 (build-system gnu-build-system)
3305 (inputs
3306 `(("xproto" ,xproto)
3307 ("libx11" ,libx11)
3308 ("pkg-config" ,pkg-config)))
3309 (home-page "http://www.x.org/wiki/")
3310 (synopsis "xorg implementation of the X Window System")
3311 (description "X.org provides an implementation of the X Window System")
3312 (license license:x11)))
3313
3314
3315 ;; no license
3316 ;; (define-public xorg-docs
3317
3318
3319 (define-public xorg-sgml-doctools
3320 (package
3321 (name "xorg-sgml-doctools")
3322 (version "1.11")
3323 (source
3324 (origin
3325 (method url-fetch)
3326 (uri (string-append
3327 "mirror://xorg/X11R7.7/src/everything/xorg-sgml-doctools-"
3328 version
3329 ".tar.bz2"))
3330 (sha256
3331 (base32
3332 "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
3333 (build-system gnu-build-system)
3334 (inputs `(("pkg-config" ,pkg-config)))
3335 (home-page "http://www.x.org/wiki/")
3336 (synopsis "xorg implementation of the X Window System")
3337 (description "X.org provides an implementation of the X Window System")
3338 (license license:x11)))
3339
3340
3341 (define-public xpr
3342 (package
3343 (name "xpr")
3344 (version "1.0.4")
3345 (source
3346 (origin
3347 (method url-fetch)
3348 (uri (string-append
3349 "mirror://xorg/X11R7.7/src/everything/xpr-"
3350 version
3351 ".tar.bz2"))
3352 (sha256
3353 (base32
3354 "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
3355 (build-system gnu-build-system)
3356 (inputs
3357 `(("xproto" ,xproto)
3358 ("libxmu" ,libxmu)
3359 ("libx11" ,libx11)
3360 ("pkg-config" ,pkg-config)))
3361 (home-page "http://www.x.org/wiki/")
3362 (synopsis "xorg implementation of the X Window System")
3363 (description "X.org provides an implementation of the X Window System")
3364 (license license:x11)))
3365
3366
3367 (define-public xprop
3368 (package
3369 (name "xprop")
3370 (version "1.2.1")
3371 (source
3372 (origin
3373 (method url-fetch)
3374 (uri (string-append
3375 "mirror://xorg/X11R7.7/src/everything/xprop-"
3376 version
3377 ".tar.bz2"))
3378 (sha256
3379 (base32
3380 "18zi2any13zlb7f34fzyw6lkiwkd6k2scp3b800a1f4rj0c7m407"))))
3381 (build-system gnu-build-system)
3382 (inputs
3383 `(("xproto" ,xproto)
3384 ("libx11" ,libx11)
3385 ("pkg-config" ,pkg-config)))
3386 (home-page "http://www.x.org/wiki/")
3387 (synopsis "xorg implementation of the X Window System")
3388 (description "X.org provides an implementation of the X Window System")
3389 (license license:x11)))
3390
3391
3392 (define-public xrandr
3393 (package
3394 (name "xrandr")
3395 (version "1.3.5")
3396 (source
3397 (origin
3398 (method url-fetch)
3399 (uri (string-append
3400 "mirror://xorg/X11R7.7/src/everything/xrandr-"
3401 version
3402 ".tar.bz2"))
3403 (sha256
3404 (base32
3405 "03lq1c1q4w5cf2ijs4b34v008lshibha9zv5lw08xpyhk9xgyn8h"))))
3406 (build-system gnu-build-system)
3407 (inputs
3408 `(("libxrender" ,libxrender)
3409 ("libxrandr" ,libxrandr)
3410 ("xproto" ,xproto)
3411 ("libx11" ,libx11)
3412 ("pkg-config" ,pkg-config)))
3413 (home-page "http://www.x.org/wiki/")
3414 (synopsis "xorg implementation of the X Window System")
3415 (description "X.org provides an implementation of the X Window System")
3416 (license license:x11)))
3417
3418
3419 (define-public xrdb
3420 (package
3421 (name "xrdb")
3422 (version "1.0.9")
3423 (source
3424 (origin
3425 (method url-fetch)
3426 (uri (string-append
3427 "mirror://xorg/X11R7.7/src/everything/xrdb-"
3428 version
3429 ".tar.bz2"))
3430 (sha256
3431 (base32
3432 "1dza5a34nj68fzhlgwf18i5bk0n24ig28yihwpjy7vwn57hh2934"))))
3433 (build-system gnu-build-system)
3434 (inputs
3435 `(("libxmu" ,libxmu)
3436 ("libx11" ,libx11)
3437 ("pkg-config" ,pkg-config)))
3438 (home-page "http://www.x.org/wiki/")
3439 (synopsis "xorg implementation of the X Window System")
3440 (description "X.org provides an implementation of the X Window System")
3441 (license license:x11)))
3442
3443
3444 (define-public xrefresh
3445 (package
3446 (name "xrefresh")
3447 (version "1.0.4")
3448 (source
3449 (origin
3450 (method url-fetch)
3451 (uri (string-append
3452 "mirror://xorg/X11R7.7/src/everything/xrefresh-"
3453 version
3454 ".tar.bz2"))
3455 (sha256
3456 (base32
3457 "0ywxzwa4kmnnmf8idr8ssgcil9xvbhnk155zpsh2i8ay93mh5586"))))
3458 (build-system gnu-build-system)
3459 (inputs
3460 `(("libx11" ,libx11)
3461 ("pkg-config" ,pkg-config)))
3462 (home-page "http://www.x.org/wiki/")
3463 (synopsis "xorg implementation of the X Window System")
3464 (description "X.org provides an implementation of the X Window System")
3465 (license license:x11)))
3466
3467
3468 (define-public xset
3469 (package
3470 (name "xset")
3471 (version "1.2.2")
3472 (source
3473 (origin
3474 (method url-fetch)
3475 (uri (string-append
3476 "mirror://xorg/X11R7.7/src/everything/xset-"
3477 version
3478 ".tar.bz2"))
3479 (sha256
3480 (base32
3481 "1s61mvscd0h7y6anljarj7nkii6plhs8ndx1fm8b1f1h00a1qdv1"))))
3482 (build-system gnu-build-system)
3483 (inputs
3484 `(("xproto" ,xproto)
3485 ("libxmu" ,libxmu)
3486 ("libxext" ,libxext)
3487 ("libx11" ,libx11)
3488 ("pkg-config" ,pkg-config)))
3489 (home-page "http://www.x.org/wiki/")
3490 (synopsis "xorg implementation of the X Window System")
3491 (description "X.org provides an implementation of the X Window System")
3492 (license license:x11)))
3493
3494
3495 (define-public xsetroot
3496 (package
3497 (name "xsetroot")
3498 (version "1.1.0")
3499 (source
3500 (origin
3501 (method url-fetch)
3502 (uri (string-append
3503 "mirror://xorg/X11R7.7/src/everything/xsetroot-"
3504 version
3505 ".tar.bz2"))
3506 (sha256
3507 (base32
3508 "1bazzsf9sy0q2bj4lxvh1kvyrhmpggzb7jg575i15sksksa3xwc8"))))
3509 (build-system gnu-build-system)
3510 (inputs
3511 `(("libxmu" ,libxmu)
3512 ("libxcursor" ,libxcursor)
3513 ("xbitmaps" ,xbitmaps)
3514 ("pkg-config" ,pkg-config)))
3515 (home-page "http://www.x.org/wiki/")
3516 (synopsis "xorg implementation of the X Window System")
3517 (description "X.org provides an implementation of the X Window System")
3518 (license license:x11)))
3519
3520
3521 (define-public xtrans
3522 (package
3523 (name "xtrans")
3524 (version "1.2.7")
3525 (source
3526 (origin
3527 (method url-fetch)
3528 (uri (string-append
3529 "mirror://xorg/X11R7.7/src/everything/xtrans-"
3530 version
3531 ".tar.bz2"))
3532 (sha256
3533 (base32
3534 "19p1bw3qyn0ia1znx6q3gx92rr9rl88ylrfijjclm8vhpa8i30bz"))))
3535 (build-system gnu-build-system)
3536 (inputs `(("pkg-config" ,pkg-config)))
3537 (home-page "http://www.x.org/wiki/")
3538 (synopsis "xorg implementation of the X Window System")
3539 (description "X.org provides an implementation of the X Window System")
3540 (license license:x11)))
3541
3542
3543 (define-public xvinfo
3544 (package
3545 (name "xvinfo")
3546 (version "1.1.1")
3547 (source
3548 (origin
3549 (method url-fetch)
3550 (uri (string-append
3551 "mirror://xorg/X11R7.7/src/everything/xvinfo-"
3552 version
3553 ".tar.bz2"))
3554 (sha256
3555 (base32
3556 "119rd93d7661ll1rfcdssn78l0b97326smziyr2f5wdwj2hlmiv0"))))
3557 (build-system gnu-build-system)
3558 (inputs
3559 `(("libxext" ,libxext)
3560 ("libxv" ,libxv)
3561 ("libx11" ,libx11)
3562 ("pkg-config" ,pkg-config)))
3563 (home-page "http://www.x.org/wiki/")
3564 (synopsis "xorg implementation of the X Window System")
3565 (description "X.org provides an implementation of the X Window System")
3566 (license license:x11)))
3567
3568
3569 (define-public xwd
3570 (package
3571 (name "xwd")
3572 (version "1.0.5")
3573 (source
3574 (origin
3575 (method url-fetch)
3576 (uri (string-append
3577 "mirror://xorg/X11R7.7/src/everything/xwd-"
3578 version
3579 ".tar.bz2"))
3580 (sha256
3581 (base32
3582 "0fkg6msy2zg7rda2rpxb7j6vmrdmqmk72xsxnyhz97196ykjnx82"))))
3583 (build-system gnu-build-system)
3584 (inputs
3585 `(("libxt" ,libxt)
3586 ("xproto" ,xproto)
3587 ("pkg-config" ,pkg-config)))
3588 (home-page "http://www.x.org/wiki/")
3589 (synopsis "xorg implementation of the X Window System")
3590 (description "X.org provides an implementation of the X Window System")
3591 (license license:x11)))
3592
3593
3594 (define-public xwininfo
3595 (package
3596 (name "xwininfo")
3597 (version "1.1.2")
3598 (source
3599 (origin
3600 (method url-fetch)
3601 (uri (string-append
3602 "mirror://xorg/X11R7.7/src/everything/xwininfo-"
3603 version
3604 ".tar.bz2"))
3605 (sha256
3606 (base32
3607 "0fmcr5yl03xw7m8p9h1rk67rrj7gp5x16a547xhmg8idw2f6r9lg"))))
3608 (build-system gnu-build-system)
3609 (inputs
3610 `(("libx11" ,libx11)
3611 ("pkg-config" ,pkg-config)
3612 ("xproto" ,xproto)))
3613 (home-page "http://www.x.org/wiki/")
3614 (synopsis "xorg implementation of the X Window System")
3615 (description "X.org provides an implementation of the X Window System")
3616 (license license:x11)))
3617
3618
3619 (define-public xwud
3620 (package
3621 (name "xwud")
3622 (version "1.0.4")
3623 (source
3624 (origin
3625 (method url-fetch)
3626 (uri (string-append
3627 "mirror://xorg/X11R7.7/src/everything/xwud-"
3628 version
3629 ".tar.bz2"))
3630 (sha256
3631 (base32
3632 "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
3633 (build-system gnu-build-system)
3634 (inputs
3635 `(("xproto" ,xproto)
3636 ("libx11" ,libx11)
3637 ("pkg-config" ,pkg-config)))
3638 (home-page "http://www.x.org/wiki/")
3639 (synopsis "xorg implementation of the X Window System")
3640 (description "X.org provides an implementation of the X Window System")
3641 (license license:x11)))
3642
3643
3644
3645 ;; packages of height 1 in the propagated-inputs tree
3646
3647 (define-public fixesproto
3648 (package
3649 (name "fixesproto")
3650 (version "5.0")
3651 (source
3652 (origin
3653 (method url-fetch)
3654 (uri (string-append
3655 "mirror://xorg/X11R7.7/src/everything/fixesproto-"
3656 version
3657 ".tar.bz2"))
3658 (sha256
3659 (base32
3660 "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
3661 (build-system gnu-build-system)
3662 (propagated-inputs
3663 `(("xextproto" ,xextproto)))
3664 (inputs
3665 `(("pkg-config" ,pkg-config)))
3666 (home-page "http://www.x.org/wiki/")
3667 (synopsis "xorg implementation of the X Window System")
3668 (description "X.org provides an implementation of the X Window System")
3669 (license license:x11)))
3670
3671
3672 (define-public libxdamage
3673 (package
3674 (name "libxdamage")
3675 (version "1.1.3")
3676 (source
3677 (origin
3678 (method url-fetch)
3679 (uri (string-append
3680 "mirror://xorg/X11R7.7/src/everything/libXdamage-"
3681 version
3682 ".tar.bz2"))
3683 (sha256
3684 (base32
3685 "1a678bwap74sqczbr2z4y4fvbr35km3inkm8bi1igjyk4v46jqdw"))))
3686 (build-system gnu-build-system)
3687 (propagated-inputs
3688 `(("damageproto" ,damageproto)))
3689 (inputs
3690 `(("xproto" ,xproto)
3691 ("libxfixes" ,libxfixes)
3692 ("libx11" ,libx11)
3693 ("pkg-config" ,pkg-config)))
3694 (home-page "http://www.x.org/wiki/")
3695 (synopsis "xorg implementation of the X Window System")
3696 (description "X.org provides an implementation of the X Window System")
3697 (license license:x11)))
3698
3699
3700 (define-public libxext
3701 (package
3702 (name "libxext")
3703 (version "1.3.1")
3704 (source
3705 (origin
3706 (method url-fetch)
3707 (uri (string-append
3708 "mirror://xorg/X11R7.7/src/everything/libXext-"
3709 version
3710 ".tar.bz2"))
3711 (sha256
3712 (base32
3713 "0ng8clhn7srbkadxjc7ih3z3v27v9ny0aa0dqkgddgxpgrhrq8jn"))))
3714 (build-system gnu-build-system)
3715 (propagated-inputs
3716 `(("xextproto" ,xextproto)))
3717 (inputs
3718 `(("libxau" ,libxau)
3719 ("libx11" ,libx11)
3720 ("pkg-config" ,pkg-config)))
3721 (home-page "http://www.x.org/wiki/")
3722 (synopsis "xorg implementation of the X Window System")
3723 (description "X.org provides an implementation of the X Window System")
3724 (license license:x11)))
3725
3726
3727 (define-public libxinerama
3728 (package
3729 (name "libxinerama")
3730 (version "1.1.2")
3731 (source
3732 (origin
3733 (method url-fetch)
3734 (uri (string-append
3735 "mirror://xorg/X11R7.7/src/everything/libXinerama-"
3736 version
3737 ".tar.bz2"))
3738 (sha256
3739 (base32
3740 "1b3aq1762hxzchd9ndavdjlksq93991s0g2z6spf8wl3v0pprrx4"))))
3741 (build-system gnu-build-system)
3742 (propagated-inputs
3743 `(("xineramaproto" ,xineramaproto)))
3744 (inputs
3745 `(("libxext" ,libxext)
3746 ("libx11" ,libx11)
3747 ("pkg-config" ,pkg-config)))
3748 (home-page "http://www.x.org/wiki/")
3749 (synopsis "xorg implementation of the X Window System")
3750 (description "X.org provides an implementation of the X Window System")
3751 (license license:x11)))
3752
3753
3754 ;; The package is missing from X11R7.7.
3755 (define-public libxp
3756 (package
3757 (name "libxp")
3758 (version "1.0.0")
3759 (source
3760 (origin
3761 (method url-fetch)
3762 (uri (string-append
3763 "mirror://xorg/individual/lib/libXp-"
3764 version
3765 ".tar.bz2"))
3766 (sha256
3767 (base32
3768 "1blwrr5zhmwwy87j0svmhv3hc13acyn5j14n5rv0anz81iav2r3y"))))
3769 (build-system gnu-build-system)
3770 (propagated-inputs
3771 `(("printproto" ,printproto)))
3772 (inputs
3773 `(("libx11" ,libx11)
3774 ("libxext" ,libxext)
3775 ("pkg-config" ,pkg-config)))
3776 (home-page "http://www.x.org/wiki/")
3777 (synopsis "xorg implementation of the X Window System")
3778 (description "X.org provides an implementation of the X Window System")
3779 (license license:x11)))
3780
3781
3782 (define-public libxrender
3783 (package
3784 (name "libxrender")
3785 (version "0.9.7")
3786 (source
3787 (origin
3788 (method url-fetch)
3789 (uri (string-append
3790 "mirror://xorg/X11R7.7/src/everything/libXrender-"
3791 version
3792 ".tar.bz2"))
3793 (sha256
3794 (base32
3795 "1rmvja2gkf5v0k2n1bcghw8v98m2kfn3af0rbmsda5dwr69npd7r"))))
3796 (build-system gnu-build-system)
3797 (propagated-inputs
3798 `(("renderproto" ,renderproto)))
3799 (inputs
3800 `(("xproto" ,xproto)
3801 ("libx11" ,libx11)
3802 ("pkg-config" ,pkg-config)))
3803 (home-page "http://www.x.org/wiki/")
3804 (synopsis "xorg implementation of the X Window System")
3805 (description "X.org provides an implementation of the X Window System")
3806 (license license:x11)))
3807
3808
3809 (define-public libxtst
3810 (package
3811 (name "libxtst")
3812 (version "1.2.1")
3813 (source
3814 (origin
3815 (method url-fetch)
3816 (uri (string-append
3817 "mirror://xorg/X11R7.7/src/everything/libXtst-"
3818 version
3819 ".tar.bz2"))
3820 (sha256
3821 (base32
3822 "1q750hjplq1rfyxkr4545z1y2a1wfnc828ynvbws7b4jwdk3xsky"))))
3823 (build-system gnu-build-system)
3824 (propagated-inputs
3825 `(("recordproto" ,recordproto)))
3826 (inputs
3827 `(("libxi" ,libxi)
3828 ("libx11" ,libx11)
3829 ("inputproto" ,inputproto)
3830 ("pkg-config" ,pkg-config)))
3831 (home-page "http://www.x.org/wiki/")
3832 (synopsis "xorg implementation of the X Window System")
3833 (description "X.org provides an implementation of the X Window System")
3834 (license license:x11)))
3835
3836
3837 (define-public libxv
3838 (package
3839 (name "libxv")
3840 (version "1.0.7")
3841 (source
3842 (origin
3843 (method url-fetch)
3844 (uri (string-append
3845 "mirror://xorg/X11R7.7/src/everything/libXv-"
3846 version
3847 ".tar.bz2"))
3848 (sha256
3849 (base32
3850 "044hllz013afhzywwpxz007l4zjy99bv9im065rqd30zckmllrjx"))))
3851 (build-system gnu-build-system)
3852 (propagated-inputs
3853 `(("videoproto" ,videoproto)))
3854 (inputs
3855 `(("xproto" ,xproto)
3856 ("libxext" ,libxext)
3857 ("libx11" ,libx11)
3858 ("pkg-config" ,pkg-config)))
3859 (home-page "http://www.x.org/wiki/")
3860 (synopsis "xorg implementation of the X Window System")
3861 (description "X.org provides an implementation of the X Window System")
3862 (license license:x11)))
3863
3864
3865 (define-public mkfontdir
3866 (package
3867 (name "mkfontdir")
3868 (version "1.0.7")
3869 (source
3870 (origin
3871 (method url-fetch)
3872 (uri (string-append
3873 "mirror://xorg/X11R7.7/src/everything/mkfontdir-"
3874 version
3875 ".tar.bz2"))
3876 (sha256
3877 (base32
3878 "0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
3879 (build-system gnu-build-system)
3880 (propagated-inputs
3881 `(("mkfontscale" ,mkfontscale)))
3882 (inputs
3883 `(("pkg-config" ,pkg-config)))
3884 (home-page "http://www.x.org/wiki/")
3885 (synopsis "xorg implementation of the X Window System")
3886 (description "X.org provides an implementation of the X Window System")
3887 (license license:x11)))
3888
3889
3890 (define-public xproto
3891 (package
3892 (name "xproto")
3893 (version "7.0.23")
3894 (source
3895 (origin
3896 (method url-fetch)
3897 (uri (string-append
3898 "mirror://xorg/X11R7.7/src/everything/xproto-"
3899 version
3900 ".tar.bz2"))
3901 (sha256
3902 (base32
3903 "17lkmi12f89qvg4jj5spqzwzc24fmsqq68dv6kpy7r7b944lmq5d"))))
3904 (build-system gnu-build-system)
3905 (propagated-inputs
3906 `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
3907 (inputs
3908 `(("pkg-config" ,pkg-config)))
3909 (home-page "http://www.x.org/wiki/")
3910 (synopsis "xorg implementation of the X Window System")
3911 (description "X.org provides an implementation of the X Window System")
3912 (license license:x11)))
3913
3914
3915
3916 ;; packages of height 2 in the propagated-inputs tree
3917
3918 (define-public libice
3919 (package
3920 (name "libice")
3921 (version "1.0.8")
3922 (source
3923 (origin
3924 (method url-fetch)
3925 (uri (string-append
3926 "mirror://xorg/X11R7.7/src/everything/libICE-"
3927 version
3928 ".tar.bz2"))
3929 (sha256
3930 (base32
3931 "07mp13pb3s73kj7y490gnx619znzwk91mlf8kdw0rzq29ll93a94"))))
3932 (build-system gnu-build-system)
3933 (propagated-inputs
3934 `(("xproto" ,xproto)))
3935 (inputs
3936 `(("xtrans" ,xtrans)
3937 ("pkg-config" ,pkg-config)))
3938 (home-page "http://www.x.org/wiki/")
3939 (synopsis "xorg implementation of the X Window System")
3940 (description "X.org provides an implementation of the X Window System")
3941 (license license:x11)))
3942
3943
3944 (define-public libxau
3945 (package
3946 (name "libxau")
3947 (version "1.0.7")
3948 (source
3949 (origin
3950 (method url-fetch)
3951 (uri (string-append
3952 "mirror://xorg/X11R7.7/src/everything/libXau-"
3953 version
3954 ".tar.bz2"))
3955 (sha256
3956 (base32
3957 "12d4f7sdv2pjxhk0lcay0pahccddszkw579dc59daqi37r8bllvi"))))
3958 (build-system gnu-build-system)
3959 (propagated-inputs
3960 `(("xproto" ,xproto)))
3961 (inputs
3962 `(("pkg-config" ,pkg-config)))
3963 (home-page "http://www.x.org/wiki/")
3964 (synopsis "xorg implementation of the X Window System")
3965 (description "X.org provides an implementation of the X Window System")
3966 (license license:x11)))
3967
3968 (define-public libxfixes
3969 (package
3970 (name "libxfixes")
3971 (version "5.0")
3972 (source
3973 (origin
3974 (method url-fetch)
3975 (uri (string-append
3976 "mirror://xorg/X11R7.7/src/everything/libXfixes-"
3977 version
3978 ".tar.bz2"))
3979 (sha256
3980 (base32
3981 "1qx2rmwhmca2n7rgafy0arp15k5vwhdhhh6v6mx76hlj29328yjk"))))
3982 (build-system gnu-build-system)
3983 (propagated-inputs
3984 `(("fixesproto" ,fixesproto)))
3985 (inputs
3986 `(("xproto" ,xproto)
3987 ("libx11" ,libx11)
3988 ("pkg-config" ,pkg-config)))
3989 (home-page "http://www.x.org/wiki/")
3990 (synopsis "xorg implementation of the X Window System")
3991 (description "X.org provides an implementation of the X Window System")
3992 (license license:x11)))
3993
3994
3995 (define-public libxfont
3996 (package
3997 (name "libxfont")
3998 (version "1.4.5")
3999 (source
4000 (origin
4001 (method url-fetch)
4002 (uri (string-append
4003 "mirror://xorg/X11R7.7/src/everything/libXfont-"
4004 version
4005 ".tar.bz2"))
4006 (sha256
4007 (base32
4008 "0w3irg00k6b6mziddnacln9q2rkf5848b04nvjqwv5bb1fw6zydv"))))
4009 (build-system gnu-build-system)
4010 (propagated-inputs
4011 `(("fontsproto" ,fontsproto)
4012 ("freetype" ,freetype)
4013 ("libfontenc" ,libfontenc)
4014 ("xproto" ,xproto)))
4015 (inputs
4016 `(("zlib" ,zlib)
4017 ("xtrans" ,xtrans)
4018 ("pkg-config" ,pkg-config)))
4019 (home-page "http://www.x.org/wiki/")
4020 (synopsis "xorg implementation of the X Window System")
4021 (description "X.org provides an implementation of the X Window System")
4022 (license license:x11)))
4023
4024
4025 (define-public libxi
4026 (package
4027 (name "libxi")
4028 (version "1.6.1")
4029 (source
4030 (origin
4031 (method url-fetch)
4032 (uri (string-append
4033 "mirror://xorg/X11R7.7/src/everything/libXi-"
4034 version
4035 ".tar.bz2"))
4036 (sha256
4037 (base32
4038 "029ihw4jq8mng8rx7a3jdvq64jm1zdkqidca93zmxv4jf9yn5qzj"))))
4039 (build-system gnu-build-system)
4040 (propagated-inputs
4041 `(("libxext" ,libxext)))
4042 (inputs
4043 `(("xproto" ,xproto)
4044 ("libx11" ,libx11)
4045 ("inputproto" ,inputproto)
4046 ("pkg-config" ,pkg-config)))
4047 (home-page "http://www.x.org/wiki/")
4048 (synopsis "xorg implementation of the X Window System")
4049 (description "X.org provides an implementation of the X Window System")
4050 (license license:x11)))
4051
4052
4053 (define-public libxrandr
4054 (package
4055 (name "libxrandr")
4056 (version "1.3.2")
4057 (source
4058 (origin
4059 (method url-fetch)
4060 (uri (string-append
4061 "mirror://xorg/X11R7.7/src/everything/libXrandr-"
4062 version
4063 ".tar.bz2"))
4064 (sha256
4065 (base32
4066 "10cvv78ws8jznma4s45dzqz0ldcxk30qgsqrc4wxfcsjmcba5b3y"))))
4067 (build-system gnu-build-system)
4068 (propagated-inputs
4069 `(("libxext" ,libxext)
4070 ("randrproto" ,randrproto)))
4071 (inputs
4072 `(("libxrender" ,libxrender)
4073 ("xproto" ,xproto)
4074 ("libx11" ,libx11)
4075 ("pkg-config" ,pkg-config)))
4076 (home-page "http://www.x.org/wiki/")
4077 (synopsis "xorg implementation of the X Window System")
4078 (description "X.org provides an implementation of the X Window System")
4079 (license license:x11)))
4080
4081
4082 (define-public libxvmc
4083 (package
4084 (name "libxvmc")
4085 (version "1.0.7")
4086 (source
4087 (origin
4088 (method url-fetch)
4089 (uri (string-append
4090 "mirror://xorg/X11R7.7/src/everything/libXvMC-"
4091 version
4092 ".tar.bz2"))
4093 (sha256
4094 (base32
4095 "18yf6ysc01pqkbk9704914ghalq1sl2hfdjmwggxm8qqhpy8bw18"))))
4096 (build-system gnu-build-system)
4097 (propagated-inputs
4098 `(("libxv" ,libxv)))
4099 (inputs
4100 `(("xproto" ,xproto)
4101 ("libxext" ,libxext)
4102 ("libx11" ,libx11)
4103 ("pkg-config" ,pkg-config)))
4104 (home-page "http://www.x.org/wiki/")
4105 (synopsis "xorg implementation of the X Window System")
4106 (description "X.org provides an implementation of the X Window System")
4107 (license license:x11)))
4108
4109
4110 (define-public libxxf86vm
4111 (package
4112 (name "libxxf86vm")
4113 (version "1.1.2")
4114 (source
4115 (origin
4116 (method url-fetch)
4117 (uri (string-append
4118 "mirror://xorg/X11R7.7/src/everything/libXxf86vm-"
4119 version
4120 ".tar.bz2"))
4121 (sha256
4122 (base32
4123 "117w92xz39rcqcahspi48nc04cc9110x1dycpf3vbcb6p0pifr55"))))
4124 (build-system gnu-build-system)
4125 (propagated-inputs
4126 `(("libxext" ,libxext)
4127 ("xf86vidmodeproto" ,xf86vidmodeproto)))
4128 (inputs
4129 `(("libx11" ,libx11)
4130 ("pkg-config" ,pkg-config)))
4131 (home-page "http://www.x.org/wiki/")
4132 (synopsis "xorg implementation of the X Window System")
4133 (description "X.org provides an implementation of the X Window System")
4134 (license license:x11)))
4135
4136
4137 ;; package outside the x.org system proper of height 3
4138
4139 (define-public mesa
4140 (package
4141 (name "mesa")
4142 ;; In newer versions (9.0.5 and 9.1 tested), "make" results in an
4143 ;; infinite configure loop, see
4144 ;; https://bugs.freedesktop.org/show_bug.cgi?id=61527
4145 (version "8.0.5")
4146 (source
4147 (origin
4148 (method url-fetch)
4149 (uri (string-append
4150 "ftp://ftp.freedesktop.org/pub/mesa/" version
4151 "/MesaLib-" version
4152 ".tar.bz2"))
4153 (sha256
4154 (base32
4155 "0pjs8x51c0i6mawgd4w03lxpyx5fnx7rc8plr8jfsscf9yiqs6si"))))
4156 (build-system gnu-build-system)
4157 (propagated-inputs
4158 `(("glproto" ,glproto)
4159 ("libdrm" ,libdrm-2.4.33)
4160 ("libxdamage" ,libxdamage)
4161 ("libxxf86vm" ,libxxf86vm)))
4162 (inputs
4163 `(("bison" ,bison)
4164 ("dri2proto" ,dri2proto)
4165 ("expat" ,expat)
4166 ("flex" ,flex)
4167 ("libx11" ,libx11)
4168 ("libxfixes" ,libxfixes)
4169 ("libxml2" ,libxml2)
4170 ("makedepend" ,makedepend)
4171 ("pkg-config" ,pkg-config)
4172 ("python" ,python)))
4173 (arguments
4174 `(#:configure-flags
4175 `("--with-gallium-drivers=r600,svga,swrast") ; drop r300 from the default list as it requires llvm
4176 #:phases
4177 (alist-cons-after
4178 'unpack 'remove-symlink
4179 (lambda* (#:key #:allow-other-keys)
4180 ;; remove dangling symlink to /usr/include/wine/windows
4181 (delete-file "src/gallium/state_trackers/d3d1x/w32api"))
4182 %standard-phases)))
4183 (home-page "http://mesa3d.org/")
4184 (synopsis "Mesa, an OpenGL implementation")
4185 (description "Mesa is a free implementation of the OpenGL specification -
4186 a system for rendering interactive 3D graphics. A variety of device drivers
4187 allows Mesa to be used in many different environments ranging from software
4188 emulation to complete hardware acceleration for modern GPUs.")
4189 (license license:x11)))
4190
4191
4192
4193 ;; packages of height 3 in the propagated-inputs tree
4194
4195 (define-public libxcb
4196 (package
4197 (name "libxcb")
4198 (version "1.8.1")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (string-append
4203 "http://xcb.freedesktop.org/dist/libxcb-"
4204 version
4205 ".tar.bz2"))
4206 (sha256
4207 (base32
4208 "03gspxcdl8r7jwbwg7fyp4cc6zic9z91amp4g5z0wwahx48nix6j"))))
4209 (build-system gnu-build-system)
4210 (propagated-inputs
4211 `(("libpthread-stubs" ,libpthread-stubs)
4212 ("libxau" ,libxau)
4213 ("libxdmcp" ,libxdmcp)))
4214 (inputs
4215 `(("xcb-proto" ,xcb-proto)
4216 ("libxslt" ,libxslt)
4217 ("pkg-config" ,pkg-config)
4218 ("python" ,python)))
4219 (home-page "http://www.x.org/wiki/")
4220 (synopsis "xorg implementation of the X Window System")
4221 (description "X.org provides an implementation of the X Window System")
4222 (license license:x11)))
4223
4224
4225 (define-public xorg-server
4226 (package
4227 (name "xorg-server")
4228 (version "1.12.2")
4229 (source
4230 (origin
4231 (method url-fetch)
4232 (uri (string-append
4233 "mirror://xorg/X11R7.7/src/everything/xorg-server-"
4234 version
4235 ".tar.bz2"))
4236 (sha256
4237 (base32
4238 "1xf57hcq6r17zxyfnx9r1wd0ir1bw13ff8bsiszwrw9jyhi9x7ya"))))
4239 (build-system gnu-build-system)
4240 (propagated-inputs
4241 `(("dri2proto" ,dri2proto)
4242 ("fontsproto" ,fontsproto)
4243 ("inputproto" ,inputproto)
4244 ("kbproto" ,kbproto)
4245 ("libpciaccess" ,libpciaccess)
4246 ("pixman" ,pixman)
4247 ("randrproto" ,randrproto)
4248 ("renderproto" ,renderproto)
4249 ("videoproto" ,videoproto)
4250 ("xextproto" ,xextproto)
4251 ("xineramaproto" ,xineramaproto)
4252 ("xproto" ,xproto)))
4253 (inputs
4254 `(("bigreqsproto" ,bigreqsproto)
4255 ("compositeproto" ,compositeproto)
4256 ("damageproto" ,damageproto)
4257 ("dbus" ,dbus)
4258 ("dmxproto" ,dmxproto)
4259 ("libdmx" ,libdmx)
4260 ("libxau" ,libxau)
4261 ("libxaw" ,libxaw)
4262 ("libxdmcp" ,libxdmcp)
4263 ("libxfixes" ,libxfixes)
4264 ("libxfont" ,libxfont)
4265 ("libxkbfile" ,libxkbfile)
4266 ("libxrender" ,libxrender)
4267 ("libxres" ,libxres)
4268 ("libxt" ,libxt)
4269 ("libxv" ,libxv)
4270 ("mesa" ,mesa)
4271 ("openssl" ,openssl)
4272 ("pkg-config" ,pkg-config)
4273 ("python" ,python)
4274 ("recordproto" ,recordproto)
4275 ("resourceproto" ,resourceproto)
4276 ("scrnsaverproto" ,scrnsaverproto)
4277 ("xcmiscproto" ,xcmiscproto)
4278 ("xf86bigfontproto" ,xf86bigfontproto)
4279 ("xf86dgaproto" ,xf86dgaproto)
4280 ("xf86driproto" ,xf86driproto)
4281 ("xf86vidmodeproto" ,xf86vidmodeproto)
4282 ;; ("xkbutils" ,xkbutils)
4283 ;; ("xkeyboard-config" ,xkeyboard-config)
4284 ("xtrans" ,xtrans)
4285 ("zlib" ,zlib)))
4286 (home-page "http://www.x.org/wiki/")
4287 (synopsis "xorg implementation of the X Window System")
4288 (description "X.org provides an implementation of the X Window System")
4289 (license license:x11)))
4290
4291
4292
4293 ;; packages of height 4 in the propagated-inputs tree
4294
4295 (define-public libx11
4296 (package
4297 (name "libx11")
4298 (version "1.5.0")
4299 (source
4300 (origin
4301 (method url-fetch)
4302 (uri (string-append
4303 "mirror://xorg/X11R7.7/src/everything/libX11-"
4304 version
4305 ".tar.bz2"))
4306 (sha256
4307 (base32
4308 "11jdpl15bxwpwv0knpkh990s8jvlybng3dx477pkrz1bx7byz0n3"))))
4309 (build-system gnu-build-system)
4310 (propagated-inputs
4311 `(("kbproto" ,kbproto)
4312 ("libxcb" ,libxcb)))
4313 (inputs
4314 `(("inputproto" ,inputproto)
4315 ("pkg-config" ,pkg-config)
4316 ("xextproto" ,xextproto)
4317 ("xtrans" ,xtrans)))
4318 (home-page "http://www.x.org/wiki/")
4319 (synopsis "xorg implementation of the X Window System")
4320 (description "X.org provides an implementation of the X Window System")
4321 (license license:x11)))
4322
4323
4324 ;; packages of height 5 in the propagated-inputs tree
4325
4326 (define-public libxcursor
4327 (package
4328 (name "libxcursor")
4329 (version "1.1.13")
4330 (source
4331 (origin
4332 (method url-fetch)
4333 (uri (string-append
4334 "mirror://xorg/X11R7.7/src/everything/libXcursor-"
4335 version
4336 ".tar.bz2"))
4337 (sha256
4338 (base32
4339 "13xd1dyb06gwdwb0bxb22fkgdlmis6wrljm2xk6fhz0v9bg2g27p"))))
4340 (build-system gnu-build-system)
4341 (propagated-inputs
4342 `(("libx11" ,libx11)
4343 ("libxrender" ,libxrender)
4344 ("libxfixes" ,libxfixes)
4345 ("xproto" ,xproto)))
4346 (inputs
4347 `(("pkg-config" ,pkg-config)))
4348 (home-page "http://www.x.org/wiki/")
4349 (synopsis "xorg implementation of the X Window System")
4350 (description "X.org provides an implementation of the X Window System")
4351 (license license:x11)))
4352
4353
4354 (define-public libxt
4355 (package
4356 (name "libxt")
4357 (version "1.1.3")
4358 (source
4359 (origin
4360 (method url-fetch)
4361 (uri (string-append
4362 "mirror://xorg/X11R7.7/src/everything/libXt-"
4363 version
4364 ".tar.bz2"))
4365 (sha256
4366 (base32
4367 "1g85gwnhs7lg5f01gfi1cpb916xc3spm1fjlv2f4xz2zzk1r7dcd"))))
4368 (build-system gnu-build-system)
4369 (propagated-inputs
4370 `(("libx11" ,libx11)
4371 ("libice" ,libice)
4372 ("libsm" ,libsm)))
4373 (inputs
4374 `(("libx11" ,libx11)
4375 ("pkg-config" ,pkg-config)))
4376 (home-page "http://www.x.org/wiki/")
4377 (synopsis "xorg implementation of the X Window System")
4378 (description "X.org provides an implementation of the X Window System")
4379 (license license:x11)))
4380
4381
4382 (define-public libxaw
4383 (package
4384 (name "libxaw")
4385 (version "1.0.11")
4386 (source
4387 (origin
4388 (method url-fetch)
4389 (uri (string-append
4390 "mirror://xorg/X11R7.7/src/everything/libXaw-"
4391 version
4392 ".tar.bz2"))
4393 (sha256
4394 (base32
4395 "14ll7ndf5njc30hz2w197qvwp7fqj7y14wq4p1cyxlbipfn79a47"))))
4396 (build-system gnu-build-system)
4397 (propagated-inputs
4398 `(("libxext" ,libxext)
4399 ("libxmu" ,libxmu)
4400 ("libxpm" ,libxpm)
4401 ("libxt" ,libxt)))
4402 (inputs
4403 `(("xproto" ,xproto)
4404 ("pkg-config" ,pkg-config)))
4405 (home-page "http://www.x.org/wiki/")
4406 (synopsis "xorg implementation of the X Window System")
4407 (description "X.org provides an implementation of the X Window System")
4408 (license license:x11)))
4409
4410
4411 ;; package outside the x.org system proper of height 5
4412
4413 (define-public libxaw3d
4414 (package
4415 (name "libxaw3d")
4416 (version "1.6.2")
4417 (source
4418 (origin
4419 (method url-fetch)
4420 (uri (string-append
4421 "mirror://xorg/individual/lib/libXaw3d-"
4422 version
4423 ".tar.bz2"))
4424 (sha256
4425 (base32
4426 "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
4427 (build-system gnu-build-system)
4428 (propagated-inputs
4429 `(("libxext" ,libxext)
4430 ("libxmu" ,libxmu)
4431 ("libxt" ,libxt)))
4432 (inputs
4433 `(("libx11" ,libx11)
4434 ("pkg-config" ,pkg-config)))
4435 (home-page "http://www.x.org/wiki/")
4436 (synopsis "xorg implementation of the X Window System")
4437 (description "X.org provides an implementation of the X Window System")
4438 (license license:x11)))