gnu: gnupg: Fix cross-compile issues.
[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)
26 #:use-module (gnu packages bison)
27 #:use-module (gnu packages compression)
28 #:use-module (gnu packages flex)
29 #:use-module (gnu packages fontutils)
30 #:use-module (gnu packages gettext)
31 #:use-module (gnu packages glib)
32 #:use-module (gnu packages gnupg)
33 #:use-module (gnu packages gperf)
34 #:use-module (gnu packages libpng)
35 #:use-module (gnu packages linux)
36 #:use-module (gnu packages m4)
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.32.4")
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 "113ycngcssbrps217dyajq96hm9xghsfch82h14yffla1r1fviw0"))))
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.46")
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 "1wah4qmrrcv0gnx65lhrlxb6gprxch92wy8lhxv6102fml6k5krk"))))
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 ;; See https://bugs.freedesktop.org/show_bug.cgi?id=47792;
1411 ;; should become obsolete with the next release.
1412 (patches (list (search-patch "luit-posix.patch")))))
1413 (build-system gnu-build-system)
1414 (inputs
1415 `(("libfontenc" ,libfontenc)
1416 ("pkg-config" ,pkg-config)))
1417 (home-page "http://www.x.org/wiki/")
1418 (synopsis "xorg implementation of the X Window System")
1419 (description "X.org provides an implementation of the X Window System")
1420 (license license:x11)))
1421
1422
1423 (define-public makedepend
1424 (package
1425 (name "makedepend")
1426 (version "1.0.4")
1427 (source
1428 (origin
1429 (method url-fetch)
1430 (uri (string-append
1431 "mirror://xorg/X11R7.7/src/everything/makedepend-"
1432 version
1433 ".tar.bz2"))
1434 (sha256
1435 (base32
1436 "1zpp2b9dfvlnfj2i1mzdyn785rpl7vih5lap7kcpiv80xspbhmmb"))))
1437 (build-system gnu-build-system)
1438 (inputs
1439 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
1440 (home-page "http://www.x.org/wiki/")
1441 (synopsis "xorg implementation of the X Window System")
1442 (description "X.org provides an implementation of the X Window System")
1443 (license license:x11)))
1444
1445
1446 (define-public mkfontscale
1447 (package
1448 (name "mkfontscale")
1449 (version "1.1.0")
1450 (source
1451 (origin
1452 (method url-fetch)
1453 (uri (string-append
1454 "mirror://xorg/X11R7.7/src/everything/mkfontscale-"
1455 version
1456 ".tar.bz2"))
1457 (sha256
1458 (base32
1459 "1539h3ws66vcql6sf2831bcs0r4d9b05lcgpswkw33lvcxighmff"))))
1460 (build-system gnu-build-system)
1461 (inputs
1462 `(("zlib" ,zlib)
1463 ("xproto" ,xproto)
1464 ("freetype" ,freetype)
1465 ("libfontenc" ,libfontenc)
1466 ("pkg-config" ,pkg-config)))
1467 (home-page "http://www.x.org/wiki/")
1468 (synopsis "xorg implementation of the X Window System")
1469 (description "X.org provides an implementation of the X Window System")
1470 (license license:x11)))
1471
1472
1473 ;; The package is missing from X11R7.7.
1474 (define-public printproto
1475 (package
1476 (name "printproto")
1477 (version "1.0.5")
1478 (source
1479 (origin
1480 (method url-fetch)
1481 (uri (string-append
1482 "mirror://xorg/individual/proto/printproto-"
1483 version
1484 ".tar.bz2"))
1485 (sha256
1486 (base32
1487 "06liap8n4s25sgp27d371cc7yg9a08dxcr3pmdjp761vyin3360j"))))
1488 (build-system gnu-build-system)
1489 (inputs `(("pkg-config" ,pkg-config)))
1490 (home-page "http://www.x.org/wiki/")
1491 (synopsis "xorg implementation of the X Window System")
1492 (description "X.org provides an implementation of the X Window System")
1493 (license license:x11)))
1494
1495
1496 (define-public randrproto
1497 (package
1498 (name "randrproto")
1499 (version "1.3.2")
1500 (source
1501 (origin
1502 (method url-fetch)
1503 (uri (string-append
1504 "mirror://xorg/X11R7.7/src/everything/randrproto-"
1505 version
1506 ".tar.bz2"))
1507 (sha256
1508 (base32
1509 "0wfwcq85wbm0g5r0snc7prgki1wi3kxrxhcxinyr54n45ihh03fr"))))
1510 (build-system gnu-build-system)
1511 (inputs `(("pkg-config" ,pkg-config)))
1512 (home-page "http://www.x.org/wiki/")
1513 (synopsis "xorg implementation of the X Window System")
1514 (description "X.org provides an implementation of the X Window System")
1515 (license license:x11)))
1516
1517
1518 (define-public recordproto
1519 (package
1520 (name "recordproto")
1521 (version "1.14.2")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (string-append
1526 "mirror://xorg/X11R7.7/src/everything/recordproto-"
1527 version
1528 ".tar.bz2"))
1529 (sha256
1530 (base32
1531 "0w3kgr1zabwf79bpc28dcnj0fpni6r53rpi82ngjbalj5s6m8xx7"))))
1532 (build-system gnu-build-system)
1533 (inputs `(("pkg-config" ,pkg-config)))
1534 (home-page "http://www.x.org/wiki/")
1535 (synopsis "xorg implementation of the X Window System")
1536 (description "X.org provides an implementation of the X Window System")
1537 (license license:x11)))
1538
1539
1540 (define-public renderproto
1541 (package
1542 (name "renderproto")
1543 (version "0.11.1")
1544 (source
1545 (origin
1546 (method url-fetch)
1547 (uri (string-append
1548 "mirror://xorg/X11R7.7/src/everything/renderproto-"
1549 version
1550 ".tar.bz2"))
1551 (sha256
1552 (base32
1553 "0dr5xw6s0qmqg0q5pdkb4jkdhaja0vbfqla79qh5j1xjj9dmlwq6"))))
1554 (build-system gnu-build-system)
1555 (inputs `(("pkg-config" ,pkg-config)))
1556 (home-page "http://www.x.org/wiki/")
1557 (synopsis "xorg implementation of the X Window System")
1558 (description "X.org provides an implementation of the X Window System")
1559 (license license:x11)))
1560
1561
1562 (define-public resourceproto
1563 (package
1564 (name "resourceproto")
1565 (version "1.2.0")
1566 (source
1567 (origin
1568 (method url-fetch)
1569 (uri (string-append
1570 "mirror://xorg/X11R7.7/src/everything/resourceproto-"
1571 version
1572 ".tar.bz2"))
1573 (sha256
1574 (base32
1575 "0638iyfiiyjw1hg3139pai0j6m65gkskrvd9684zgc6ydcx00riw"))))
1576 (build-system gnu-build-system)
1577 (inputs `(("pkg-config" ,pkg-config)))
1578 (home-page "http://www.x.org/wiki/")
1579 (synopsis "xorg implementation of the X Window System")
1580 (description "X.org provides an implementation of the X Window System")
1581 (license license:x11)))
1582
1583
1584 (define-public scrnsaverproto
1585 (package
1586 (name "scrnsaverproto")
1587 (version "1.2.2")
1588 (source
1589 (origin
1590 (method url-fetch)
1591 (uri (string-append
1592 "mirror://xorg/X11R7.7/src/everything/scrnsaverproto-"
1593 version
1594 ".tar.bz2"))
1595 (sha256
1596 (base32
1597 "0rfdbfwd35d761xkfifcscx56q0n56043ixlmv70r4v4l66hmdwb"))))
1598 (build-system gnu-build-system)
1599 (inputs `(("pkg-config" ,pkg-config)))
1600 (home-page "http://www.x.org/wiki/")
1601 (synopsis "xorg implementation of the X Window System")
1602 (description "X.org provides an implementation of the X Window System")
1603 (license license:x11)))
1604
1605
1606 (define-public sessreg
1607 (package
1608 (name "sessreg")
1609 (version "1.0.7")
1610 (source
1611 (origin
1612 (method url-fetch)
1613 (uri (string-append
1614 "mirror://xorg/X11R7.7/src/everything/sessreg-"
1615 version
1616 ".tar.bz2"))
1617 (sha256
1618 (base32
1619 "0lifgjxdvc6lwyjk90slddnr12fsv88ldy6qhklr5av409cfwd47"))))
1620 (build-system gnu-build-system)
1621 (inputs
1622 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
1623 (home-page "http://www.x.org/wiki/")
1624 (synopsis "xorg implementation of the X Window System")
1625 (description "X.org provides an implementation of the X Window System")
1626 (license license:x11)))
1627
1628
1629 (define-public setxkbmap
1630 (package
1631 (name "setxkbmap")
1632 (version "1.3.0")
1633 (source
1634 (origin
1635 (method url-fetch)
1636 (uri (string-append
1637 "mirror://xorg/X11R7.7/src/everything/setxkbmap-"
1638 version
1639 ".tar.bz2"))
1640 (sha256
1641 (base32
1642 "1inygpvlgc6vr5h9laxw9lnvafnccl3fy0g5n9ll28iq3yfmqc1x"))))
1643 (build-system gnu-build-system)
1644 (inputs
1645 `(("libxkbfile" ,libxkbfile)
1646 ("libx11" ,libx11)
1647 ("pkg-config" ,pkg-config)))
1648 (home-page "http://www.x.org/wiki/")
1649 (synopsis "xorg implementation of the X Window System")
1650 (description "X.org provides an implementation of the X Window System")
1651 (license license:x11)))
1652
1653
1654 (define-public smproxy
1655 (package
1656 (name "smproxy")
1657 (version "1.0.5")
1658 (source
1659 (origin
1660 (method url-fetch)
1661 (uri (string-append
1662 "mirror://xorg/X11R7.7/src/everything/smproxy-"
1663 version
1664 ".tar.bz2"))
1665 (sha256
1666 (base32
1667 "02fn5wa1gs2jap6sr9j9yk6zsvz82j8l61pf74iyqwa99q4wnb67"))))
1668 (build-system gnu-build-system)
1669 (inputs
1670 `(("libxt" ,libxt)
1671 ("libxmu" ,libxmu)
1672 ("pkg-config" ,pkg-config)))
1673 (home-page "http://www.x.org/wiki/")
1674 (synopsis "xorg implementation of the X Window System")
1675 (description "X.org provides an implementation of the X Window System")
1676 (license license:x11)))
1677
1678
1679 (define-public util-macros
1680 (package
1681 (name "util-macros")
1682 (version "1.17")
1683 (source
1684 (origin
1685 (method url-fetch)
1686 (uri (string-append
1687 "mirror://xorg/X11R7.7/src/everything/util-macros-"
1688 version
1689 ".tar.bz2"))
1690 (sha256
1691 (base32
1692 "1vbmrcn5n3wp4pyw0n4c3pyvzlc4yf7jzgngavfdq5zwfbgfsybx"))))
1693 (build-system gnu-build-system)
1694 (inputs `(("pkg-config" ,pkg-config)))
1695 (home-page "http://www.x.org/wiki/")
1696 (synopsis "xorg implementation of the X Window System")
1697 (description "X.org provides an implementation of the X Window System")
1698 (license license:x11)))
1699
1700
1701 (define-public videoproto
1702 (package
1703 (name "videoproto")
1704 (version "2.3.1")
1705 (source
1706 (origin
1707 (method url-fetch)
1708 (uri (string-append
1709 "mirror://xorg/X11R7.7/src/everything/videoproto-"
1710 version
1711 ".tar.bz2"))
1712 (sha256
1713 (base32
1714 "0nk3i6gwkqq1w8zwn7bxz344pi1dwcjrmf6hr330h7hxjcj6viry"))))
1715 (build-system gnu-build-system)
1716 (inputs `(("pkg-config" ,pkg-config)))
1717 (home-page "http://www.x.org/wiki/")
1718 (synopsis "xorg implementation of the X Window System")
1719 (description "X.org provides an implementation of the X Window System")
1720 (license license:x11)))
1721
1722
1723 (define-public windowswmproto
1724 (package
1725 (name "windowswmproto")
1726 (version "1.0.4")
1727 (source
1728 (origin
1729 (method url-fetch)
1730 (uri (string-append
1731 "mirror://xorg/X11R7.7/src/everything/windowswmproto-"
1732 version
1733 ".tar.bz2"))
1734 (sha256
1735 (base32
1736 "0syjxgy4m8l94qrm03nvn5k6bkxc8knnlld1gbllym97nvnv0ny0"))))
1737 (build-system gnu-build-system)
1738 (inputs `(("pkg-config" ,pkg-config)))
1739 (home-page "http://www.x.org/wiki/")
1740 (synopsis "xorg implementation of the X Window System")
1741 (description "X.org provides an implementation of the X Window System")
1742 (license license:x11)))
1743
1744
1745 (define-public x11perf
1746 (package
1747 (name "x11perf")
1748 (version "1.5.4")
1749 (source
1750 (origin
1751 (method url-fetch)
1752 (uri (string-append
1753 "mirror://xorg/X11R7.7/src/everything/x11perf-"
1754 version
1755 ".tar.bz2"))
1756 (sha256
1757 (base32
1758 "111iwpxhnxjiq44w96zf0kszg5zpgv1g3ayx18v4nhdzl9bqivi4"))))
1759 (build-system gnu-build-system)
1760 (inputs
1761 `(("libx11" ,libx11)
1762 ("libxft" ,libxft)
1763 ("libxmu" ,libxmu)
1764 ("libxrender" ,libxrender)
1765 ("pkg-config" ,pkg-config)))
1766 (home-page "http://www.x.org/wiki/")
1767 (synopsis "xorg implementation of the X Window System")
1768 (description "X.org provides an implementation of the X Window System")
1769 (license license:x11)))
1770
1771
1772 (define-public xauth
1773 (package
1774 (name "xauth")
1775 (version "1.0.7")
1776 (source
1777 (origin
1778 (method url-fetch)
1779 (uri (string-append
1780 "mirror://xorg/X11R7.7/src/everything/xauth-"
1781 version
1782 ".tar.bz2"))
1783 (sha256
1784 (base32
1785 "1382wdfiakgckbw1xxavzh1nm34q21b1zzy96qp7ws66xc48rxw4"))))
1786 (build-system gnu-build-system)
1787 (inputs
1788 `(("libxmu" ,libxmu)
1789 ("libxext" ,libxext)
1790 ("libxau" ,libxau)
1791 ("libx11" ,libx11)
1792 ("pkg-config" ,pkg-config)))
1793 (home-page "http://www.x.org/wiki/")
1794 (synopsis "xorg implementation of the X Window System")
1795 (description "X.org provides an implementation of the X Window System")
1796 (license license:x11)))
1797
1798
1799 (define-public xbacklight
1800 (package
1801 (name "xbacklight")
1802 (version "1.1.2")
1803 (source
1804 (origin
1805 (method url-fetch)
1806 (uri (string-append
1807 "mirror://xorg/X11R7.7/src/everything/xbacklight-"
1808 version
1809 ".tar.bz2"))
1810 (sha256
1811 (base32
1812 "02b5jfys2msla2yvg5s0knzyxg2104r25czkwd49i8g8kp804bxg"))))
1813 (build-system gnu-build-system)
1814 (inputs
1815 `(("libx11" ,libx11)
1816 ("libxrandr" ,libxrandr)
1817 ("libxrender" ,libxrender)
1818 ("pkg-config" ,pkg-config)))
1819 (home-page "http://www.x.org/wiki/")
1820 (synopsis "xorg implementation of the X Window System")
1821 (description "X.org provides an implementation of the X Window System")
1822 (license license:x11)))
1823
1824
1825 (define-public xbitmaps
1826 (package
1827 (name "xbitmaps")
1828 (version "1.1.1")
1829 (source
1830 (origin
1831 (method url-fetch)
1832 (uri (string-append
1833 "mirror://xorg/X11R7.7/src/everything/xbitmaps-"
1834 version
1835 ".tar.bz2"))
1836 (sha256
1837 (base32
1838 "178ym90kwidia6nas4qr5n5yqh698vv8r02js0r4vg3b6lsb0w9n"))))
1839 (build-system gnu-build-system)
1840 (inputs `(("pkg-config" ,pkg-config)))
1841 (home-page "http://www.x.org/wiki/")
1842 (synopsis "xorg implementation of the X Window System")
1843 (description "X.org provides an implementation of the X Window System")
1844 (license license:x11)))
1845
1846
1847 (define-public xcb-proto
1848 (package
1849 (name "xcb-proto")
1850 (version "1.7.1")
1851 (source
1852 (origin
1853 (method url-fetch)
1854 (uri (string-append
1855 "http://xcb.freedesktop.org/dist/xcb-proto-"
1856 version
1857 ".tar.bz2"))
1858 (sha256
1859 (base32
1860 "0ds4qg6slidrzyz6q9ckq0a19hn6blzpnvciy4brh741gn49jpdd"))))
1861 (build-system gnu-build-system)
1862 (inputs
1863 `(("pkg-config" ,pkg-config) ("python" ,python-wrapper)))
1864 (home-page "http://www.x.org/wiki/")
1865 (synopsis "xorg implementation of the X Window System")
1866 (description "X.org provides an implementation of the X Window System")
1867 (license license:x11)))
1868
1869
1870 (define-public xcmiscproto
1871 (package
1872 (name "xcmiscproto")
1873 (version "1.2.2")
1874 (source
1875 (origin
1876 (method url-fetch)
1877 (uri (string-append
1878 "mirror://xorg/X11R7.7/src/everything/xcmiscproto-"
1879 version
1880 ".tar.bz2"))
1881 (sha256
1882 (base32
1883 "1pyjv45wivnwap2wvsbrzdvjc5ql8bakkbkrvcv6q9bjjf33ccmi"))))
1884 (build-system gnu-build-system)
1885 (inputs `(("pkg-config" ,pkg-config)))
1886 (home-page "http://www.x.org/wiki/")
1887 (synopsis "xorg implementation of the X Window System")
1888 (description "X.org provides an implementation of the X Window System")
1889 (license license:x11)))
1890
1891
1892 (define-public xcmsdb
1893 (package
1894 (name "xcmsdb")
1895 (version "1.0.4")
1896 (source
1897 (origin
1898 (method url-fetch)
1899 (uri (string-append
1900 "mirror://xorg/X11R7.7/src/everything/xcmsdb-"
1901 version
1902 ".tar.bz2"))
1903 (sha256
1904 (base32
1905 "03ms731l3kvaldq7ycbd30j6134b61i3gbll4b2gl022wyzbjq74"))))
1906 (build-system gnu-build-system)
1907 (inputs
1908 `(("libx11" ,libx11)
1909 ("pkg-config" ,pkg-config)))
1910 (home-page "http://www.x.org/wiki/")
1911 (synopsis "xorg implementation of the X Window System")
1912 (description "X.org provides an implementation of the X Window System")
1913 (license license:x11)))
1914
1915
1916 (define-public xcursor-themes
1917 (package
1918 (name "xcursor-themes")
1919 (version "1.0.3")
1920 (source
1921 (origin
1922 (method url-fetch)
1923 (uri (string-append
1924 "mirror://xorg/X11R7.7/src/everything/xcursor-themes-"
1925 version
1926 ".tar.bz2"))
1927 (sha256
1928 (base32
1929 "1is4bak0qkkhv63mfa5l7492r475586y52yzfxyv3psppn662ilr"))))
1930 (build-system gnu-build-system)
1931 (inputs
1932 `(("libxcursor" ,libxcursor)
1933 ("pkg-config" ,pkg-config)
1934 ("xcursorgen" ,xcursorgen)))
1935 (arguments
1936 `(#:configure-flags
1937 (list (string-append "--with-cursordir="
1938 (assoc-ref %outputs "out")
1939 "/share/icons"))))
1940 (home-page "http://www.x.org/wiki/")
1941 (synopsis "xorg implementation of the X Window System")
1942 (description "X.org provides an implementation of the X Window System")
1943 (license license:x11)))
1944
1945
1946 (define-public xcursorgen
1947 (package
1948 (name "xcursorgen")
1949 (version "1.0.5")
1950 (source
1951 (origin
1952 (method url-fetch)
1953 (uri (string-append
1954 "mirror://xorg/X11R7.7/src/everything/xcursorgen-"
1955 version
1956 ".tar.bz2"))
1957 (sha256
1958 (base32
1959 "10f5wk1326mm45gvgpf4m2p0j80fcd0i4c52zikahb91zah72wdw"))))
1960 (build-system gnu-build-system)
1961 (inputs
1962 `(("libxcursor" ,libxcursor)
1963 ("libpng" ,libpng)
1964 ("pkg-config" ,pkg-config)))
1965 (home-page "http://www.x.org/wiki/")
1966 (synopsis "xorg implementation of the X Window System")
1967 (description "X.org provides an implementation of the X Window System")
1968 (license license:x11)))
1969
1970
1971 (define-public xdpyinfo
1972 (package
1973 (name "xdpyinfo")
1974 (version "1.3.0")
1975 (source
1976 (origin
1977 (method url-fetch)
1978 (uri (string-append
1979 "mirror://xorg/X11R7.7/src/everything/xdpyinfo-"
1980 version
1981 ".tar.bz2"))
1982 (sha256
1983 (base32
1984 "0gypsvpmay3lsh3b1dg29pjxv95pkrr21d4w6ys02mrbld24kvi3"))))
1985 (build-system gnu-build-system)
1986 (inputs
1987 `(("inputproto" ,inputproto)
1988 ("libx11" ,libx11)
1989 ("libxxf86vm" ,libxxf86vm)
1990 ("libxxf86dga" ,libxxf86dga)
1991 ("libxtst" ,libxtst)
1992 ("libxrender" ,libxrender)
1993 ("libxinerama" ,libxinerama)
1994 ("libxi" ,libxi)
1995 ("libxcomposite" ,libxcomposite)
1996 ("libdmx" ,libdmx)
1997 ("pkg-config" ,pkg-config)))
1998 (home-page "http://www.x.org/wiki/")
1999 (synopsis "xorg implementation of the X Window System")
2000 (description "X.org provides an implementation of the X Window System")
2001 (license license:x11)))
2002
2003
2004 (define-public xdriinfo
2005 (package
2006 (name "xdriinfo")
2007 (version "1.0.4")
2008 (source
2009 (origin
2010 (method url-fetch)
2011 (uri (string-append
2012 "mirror://xorg/X11R7.7/src/everything/xdriinfo-"
2013 version
2014 ".tar.bz2"))
2015 (sha256
2016 (base32
2017 "076bjix941znyjmh3j5jjsnhp2gv2iq53d0ks29mvvv87cyy9iim"))))
2018 (build-system gnu-build-system)
2019 (inputs
2020 `(("mesa" ,mesa)
2021 ("libx11" ,libx11)
2022 ("pkg-config" ,pkg-config)))
2023 (home-page "http://www.x.org/wiki/")
2024 (synopsis "xorg implementation of the X Window System")
2025 (description "X.org provides an implementation of the X Window System")
2026 (license license:x11)))
2027
2028
2029 (define-public xev
2030 (package
2031 (name "xev")
2032 (version "1.2.0")
2033 (source
2034 (origin
2035 (method url-fetch)
2036 (uri (string-append
2037 "mirror://xorg/X11R7.7/src/everything/xev-"
2038 version
2039 ".tar.bz2"))
2040 (sha256
2041 (base32
2042 "13xk5z7vy87rnn4574z0jfzymdivyc7pl4axim81sx0pmdysg1ip"))))
2043 (build-system gnu-build-system)
2044 (inputs
2045 `(("libxrender" ,libxrender)
2046 ("libxrandr" ,libxrandr)
2047 ("xproto" ,xproto)
2048 ("libx11" ,libx11)
2049 ("pkg-config" ,pkg-config)))
2050 (home-page "http://www.x.org/wiki/")
2051 (synopsis "xorg implementation of the X Window System")
2052 (description "X.org provides an implementation of the X Window System")
2053 (license license:x11)))
2054
2055
2056 (define-public xextproto
2057 (package
2058 (name "xextproto")
2059 (version "7.2.1")
2060 (source
2061 (origin
2062 (method url-fetch)
2063 (uri (string-append
2064 "mirror://xorg/X11R7.7/src/everything/xextproto-"
2065 version
2066 ".tar.bz2"))
2067 (sha256
2068 (base32
2069 "06kdanbnprxvgl56l5h0lqj4b0f1fbb1ndha33mv5wvy802v2lvw"))))
2070 (build-system gnu-build-system)
2071 (inputs `(("pkg-config" ,pkg-config)))
2072 (home-page "http://www.x.org/wiki/")
2073 (synopsis "xorg implementation of the X Window System")
2074 (description "X.org provides an implementation of the X Window System")
2075 (license license:x11)))
2076
2077
2078 (define-public xf86-input-evdev
2079 (package
2080 (name "xf86-input-evdev")
2081 (version "2.7.0")
2082 (source
2083 (origin
2084 (method url-fetch)
2085 (uri (string-append
2086 "mirror://xorg/X11R7.7/src/everything/xf86-input-evdev-"
2087 version
2088 ".tar.bz2"))
2089 (sha256
2090 (base32
2091 "1ivf5n821chckrgp89mpb18zi00v1hyrkc1hr82q0x6g1kpgxq9y"))))
2092 (build-system gnu-build-system)
2093 ;; FIXME: Add required input udev once it is available.
2094 (inputs `(("pkg-config" ,pkg-config)
2095 ("xorg-server" ,xorg-server)))
2096 (home-page "http://www.x.org/wiki/")
2097 (synopsis "xorg implementation of the X Window System")
2098 (description "X.org provides an implementation of the X Window System")
2099 (license license:x11)))
2100
2101
2102 (define-public xf86-input-joystick
2103 (package
2104 (name "xf86-input-joystick")
2105 (version "1.6.1")
2106 (source
2107 (origin
2108 (method url-fetch)
2109 (uri (string-append
2110 "mirror://xorg/X11R7.7/src/everything/xf86-input-joystick-"
2111 version
2112 ".tar.bz2"))
2113 (sha256
2114 (base32
2115 "1xgpkdmfw4ahjlva97gs9sllzw8nlpa8mxj59g28fxhak67mvv8x"))))
2116 (build-system gnu-build-system)
2117 (inputs `(("pkg-config" ,pkg-config)
2118 ("xorg-server" ,xorg-server)))
2119 (arguments
2120 `(#:configure-flags
2121 (list (string-append "--with-sdkdir="
2122 (assoc-ref %outputs "out")
2123 "/include/xorg"))))
2124 (home-page "http://www.x.org/wiki/")
2125 (synopsis "xorg implementation of the X Window System")
2126 (description "X.org provides an implementation of the X Window System")
2127 (license license:x11)))
2128
2129
2130 (define-public xf86-input-keyboard
2131 (package
2132 (name "xf86-input-keyboard")
2133 (version "1.6.1")
2134 (source
2135 (origin
2136 (method url-fetch)
2137 (uri (string-append
2138 "mirror://xorg/X11R7.7/src/everything/xf86-input-keyboard-"
2139 version
2140 ".tar.bz2"))
2141 (sha256
2142 (base32
2143 "1hwc1bjw5mxv186xbrxiky0agfglwqg8fsxqdh4br1vzgxpck7ma"))))
2144 (build-system gnu-build-system)
2145 (inputs `(("pkg-config" ,pkg-config)
2146 ("xorg-server" ,xorg-server)))
2147 (home-page "http://www.x.org/wiki/")
2148 (synopsis "xorg implementation of the X Window System")
2149 (description "X.org provides an implementation of the X Window System")
2150 (license license:x11)))
2151
2152
2153 (define-public xf86-input-mouse
2154 (package
2155 (name "xf86-input-mouse")
2156 (version "1.7.2")
2157 (source
2158 (origin
2159 (method url-fetch)
2160 (uri (string-append
2161 "mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
2162 version
2163 ".tar.bz2"))
2164 (sha256
2165 (base32
2166 "0fs1lwnycyv3d0m6l2wrnlgvbs8qw66d93hwlnmrsswfq5bp6ark"))))
2167 (build-system gnu-build-system)
2168 (inputs `(("pkg-config" ,pkg-config)
2169 ("xorg-server" ,xorg-server)))
2170 (home-page "http://www.x.org/wiki/")
2171 (synopsis "xorg implementation of the X Window System")
2172 (description "X.org provides an implementation of the X Window System")
2173 (license license:x11)))
2174
2175
2176 (define-public xf86-input-synaptics
2177 (package
2178 (name "xf86-input-synaptics")
2179 (version "1.6.1")
2180 (source
2181 (origin
2182 (method url-fetch)
2183 (uri (string-append
2184 "mirror://xorg/X11R7.7/src/everything/xf86-input-synaptics-"
2185 version
2186 ".tar.bz2"))
2187 (sha256
2188 (base32
2189 "0g5b1s6q1dg38l8y47cwg7cs5nivwj0agmp71g273ws0lfg4bc8s"))))
2190 (build-system gnu-build-system)
2191 (inputs `(("libx11" ,libx11)
2192 ("libxi" ,libxi)
2193 ("mtdev" ,mtdev)
2194 ("pkg-config" ,pkg-config)
2195 ("xorg-server" ,xorg-server)))
2196 (arguments
2197 `(#:configure-flags
2198 (list (string-append "--with-sdkdir="
2199 (assoc-ref %outputs "out")
2200 "/include/xorg")
2201 (string-append "--with-xorg-conf-dir="
2202 (assoc-ref %outputs "out")
2203 "/share/X11/xorg.conf.d"))))
2204 (home-page "http://www.x.org/wiki/")
2205 (synopsis "xorg implementation of the X Window System")
2206 (description "X.org provides an implementation of the X Window System")
2207 (license license:x11)))
2208
2209
2210 (define-public xf86-input-vmmouse
2211 (package
2212 (name "xf86-input-vmmouse")
2213 (version "12.8.0")
2214 (source
2215 (origin
2216 (method url-fetch)
2217 (uri (string-append
2218 "mirror://xorg/X11R7.7/src/everything/xf86-input-vmmouse-"
2219 version
2220 ".tar.bz2"))
2221 (sha256
2222 (base32
2223 "16l65mnjb1xxav6c5q0xhhqih81bzify2c5qrhqc2j3waq5yr9m8"))))
2224 (build-system gnu-build-system)
2225 (inputs `(("pkg-config" ,pkg-config)
2226 ("xorg-server" ,xorg-server)))
2227 (arguments
2228 `(#:configure-flags
2229 (list(string-append "--with-xorg-conf-dir="
2230 (assoc-ref %outputs "out")
2231 "/share/X11/xorg.conf.d"))))
2232 (home-page "http://www.x.org/wiki/")
2233 (synopsis "xorg implementation of the X Window System")
2234 (description "X.org provides an implementation of the X Window System")
2235 (license license:x11)))
2236
2237
2238 (define-public xf86-input-void
2239 (package
2240 (name "xf86-input-void")
2241 (version "1.4.0")
2242 (source
2243 (origin
2244 (method url-fetch)
2245 (uri (string-append
2246 "mirror://xorg/X11R7.7/src/everything/xf86-input-void-"
2247 version
2248 ".tar.bz2"))
2249 (sha256
2250 (base32
2251 "01bmk324fq48wydvy1qrnxbw6qz0fjd0i80g0n4cqr1c4mjmif9a"))))
2252 (build-system gnu-build-system)
2253 (inputs `(("pkg-config" ,pkg-config)
2254 ("xorg-server" ,xorg-server)))
2255 (home-page "http://www.x.org/wiki/")
2256 (synopsis "xorg implementation of the X Window System")
2257 (description "X.org provides an implementation of the X Window System")
2258 (license license:x11)))
2259
2260
2261 (define-public xf86-video-ark
2262 (package
2263 (name "xf86-video-ark")
2264 (version "0.7.4")
2265 (source
2266 (origin
2267 (method url-fetch)
2268 (uri (string-append
2269 "mirror://xorg/X11R7.7/src/everything/xf86-video-ark-"
2270 version
2271 ".tar.bz2"))
2272 (sha256
2273 (base32
2274 "194zc35ivfh3vcxcilf9nbi88c2di8kbh84x535cljlpiajdnk5x"))))
2275 (build-system gnu-build-system)
2276 (inputs `(("pkg-config" ,pkg-config)
2277 ("xorg-server" ,xorg-server)))
2278 (home-page "http://www.x.org/wiki/")
2279 (synopsis "xorg implementation of the X Window System")
2280 (description "X.org provides an implementation of the X Window System")
2281 (license license:x11)))
2282
2283
2284 (define-public xf86-video-ast
2285 (package
2286 (name "xf86-video-ast")
2287 (version "0.93.10")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append
2292 "mirror://xorg/X11R7.7/src/everything/xf86-video-ast-"
2293 version
2294 ".tar.bz2"))
2295 (sha256
2296 (base32
2297 "1q64z8qqa0ix3cymqiwk1s3sphd1fvvz30lvyxhgkgciygz6dm69"))))
2298 (build-system gnu-build-system)
2299 (inputs `(("pkg-config" ,pkg-config)
2300 ("xorg-server" ,xorg-server)))
2301 (home-page "http://www.x.org/wiki/")
2302 (synopsis "xorg implementation of the X Window System")
2303 (description "X.org provides an implementation of the X Window System")
2304 (license license:x11)))
2305
2306
2307 (define-public xf86-video-ati
2308 (package
2309 (name "xf86-video-ati")
2310 (version "6.14.4")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (string-append
2315 "mirror://xorg/X11R7.7/src/everything/xf86-video-ati-"
2316 version
2317 ".tar.bz2"))
2318 (sha256
2319 (base32
2320 "11gg6xn65vym75769hzgzpkjsyhlkrw4zw3ncngriq7vz1g47zjg"))))
2321 (build-system gnu-build-system)
2322 (inputs `(("mesa" ,mesa)
2323 ("pkg-config" ,pkg-config)
2324 ("xxf86driproto" ,xf86driproto)
2325 ("xorg-server" ,xorg-server)))
2326 (home-page "http://www.x.org/wiki/")
2327 (synopsis "xorg implementation of the X Window System")
2328 (description "X.org provides an implementation of the X Window System")
2329 (license license:x11)))
2330
2331
2332 (define-public xf86-video-cirrus
2333 (package
2334 (name "xf86-video-cirrus")
2335 (version "1.4.0")
2336 (source
2337 (origin
2338 (method url-fetch)
2339 (uri (string-append
2340 "mirror://xorg/X11R7.7/src/everything/xf86-video-cirrus-"
2341 version
2342 ".tar.bz2"))
2343 (sha256
2344 (base32
2345 "0blnbspj4936wy46lp346s4b08dfcray6yicsxvv5b4699fzl1rb"))))
2346 (build-system gnu-build-system)
2347 (inputs `(("pkg-config" ,pkg-config)
2348 ("xorg-server" ,xorg-server)))
2349 (home-page "http://www.x.org/wiki/")
2350 (synopsis "xorg implementation of the X Window System")
2351 (description "X.org provides an implementation of the X Window System")
2352 (license license:x11)))
2353
2354
2355 ;; non-free license
2356 ;; (define-public xf86-video-dummy
2357
2358
2359 (define-public xf86-video-fbdev
2360 (package
2361 (name "xf86-video-fbdev")
2362 (version "0.4.2")
2363 (source
2364 (origin
2365 (method url-fetch)
2366 (uri (string-append
2367 "mirror://xorg/X11R7.7/src/everything/xf86-video-fbdev-"
2368 version
2369 ".tar.bz2"))
2370 (sha256
2371 (base32
2372 "1mc23w0bfmak5216411xh58nrs93jlxmi6l412hmqzhxnjs73clk"))))
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 ;; Compilation errors: Assembler messages operand size mismatch etc.
2383 ;; (define-public xf86-video-geode
2384 ;; (package
2385 ;; (name "xf86-video-geode")
2386 ;; (version "2.11.13")
2387 ;; (source
2388 ;; (origin
2389 ;; (method url-fetch)
2390 ;; (uri (string-append
2391 ;; "mirror://xorg/X11R7.7/src/everything/xf86-video-geode-"
2392 ;; version
2393 ;; ".tar.bz2"))
2394 ;; (sha256
2395 ;; (base32
2396 ;; "09p2cjd2fb7h32k9qs4wp7qvhfn2zv454spv5mfplv7w2jis4863"))))
2397 ;; (build-system gnu-build-system)
2398 ;; (inputs `(("pkg-config" ,pkg-config)
2399 ;; ("xorg-server" ,xorg-server)))
2400 ;; (home-page "http://www.x.org/wiki/")
2401 ;; (synopsis "xorg implementation of the X Window System")
2402 ;; (description "X.org provides an implementation of the X Window System")
2403 ;; (license license:x11)))
2404
2405
2406 ;; Driver for obsolete graphics cards, depends on libglide:
2407 ;; http://sourceforge.net/projects/glide/ ,
2408 ;; last updated in 2003, and which does not compile out of the box any more.
2409 ;; (define-public xf86-video-glide
2410 ;; (package
2411 ;; (name "xf86-video-glide")
2412 ;; (version "1.2.0")
2413 ;; (source
2414 ;; (origin
2415 ;; (method url-fetch)
2416 ;; (uri (string-append
2417 ;; "mirror://xorg/X11R7.7/src/everything/xf86-video-glide-"
2418 ;; version
2419 ;; ".tar.bz2"))
2420 ;; (sha256
2421 ;; (base32
2422 ;; "0byapm9mnpqk3wijfnnan3d22ii5cw6dmg4xn1625iiz89j5vs1l"))))
2423 ;; (build-system gnu-build-system)
2424 ;; (inputs `(("pkg-config" ,pkg-config)
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-glint
2433 (package
2434 (name "xf86-video-glint")
2435 (version "1.2.7")
2436 (source
2437 (origin
2438 (method url-fetch)
2439 (uri (string-append
2440 "mirror://xorg/X11R7.7/src/everything/xf86-video-glint-"
2441 version
2442 ".tar.bz2"))
2443 (sha256
2444 (base32
2445 "0nf36jryabpncqq4m6sfsnmzk00f7gvfmjnl8l8sfy7w6sa6iacs"))))
2446 (build-system gnu-build-system)
2447 (inputs `(("pkg-config" ,pkg-config)
2448 ("xf86dgaproto" ,xf86dgaproto)
2449 ("xorg-server" ,xorg-server)))
2450 (home-page "http://www.x.org/wiki/")
2451 (synopsis "xorg implementation of the X Window System")
2452 (description "X.org provides an implementation of the X Window System")
2453 (license license:x11)))
2454
2455
2456 (define-public xf86-video-i128
2457 (package
2458 (name "xf86-video-i128")
2459 (version "1.3.5")
2460 (source
2461 (origin
2462 (method url-fetch)
2463 (uri (string-append
2464 "mirror://xorg/X11R7.7/src/everything/xf86-video-i128-"
2465 version
2466 ".tar.bz2"))
2467 (sha256
2468 (base32
2469 "1sik8ck410hb2885vy7rlc590hw5br8lr2fzxgmv55jyawgfpv9y"))))
2470 (build-system gnu-build-system)
2471 (inputs `(("pkg-config" ,pkg-config)
2472 ("xorg-server" ,xorg-server)))
2473 (home-page "http://www.x.org/wiki/")
2474 (synopsis "xorg implementation of the X Window System")
2475 (description "X.org provides an implementation of the X Window System")
2476 (license license:x11)))
2477
2478
2479 (define-public xf86-video-intel
2480 (package
2481 (name "xf86-video-intel")
2482 (version "2.19.0")
2483 (source
2484 (origin
2485 (method url-fetch)
2486 (uri (string-append
2487 "mirror://xorg/X11R7.7/src/everything/xf86-video-intel-"
2488 version
2489 ".tar.bz2"))
2490 (sha256
2491 (base32
2492 "1g742szymajh88a5dw08sxcr45bmxgc4w3m6hddv9qscn5hks4rj"))))
2493 (build-system gnu-build-system)
2494 (inputs `(("libdrm" ,libdrm)
2495 ("libx11" ,libx11)
2496 ("pkg-config" ,pkg-config)
2497 ("xorg-server" ,xorg-server)))
2498 (home-page "http://www.x.org/wiki/")
2499 (synopsis "xorg implementation of the X Window System")
2500 (description "X.org provides an implementation of the X Window System")
2501 (license license:x11)))
2502
2503
2504 (define-public xf86-video-mach64
2505 (package
2506 (name "xf86-video-mach64")
2507 (version "6.9.1")
2508 (source
2509 (origin
2510 (method url-fetch)
2511 (uri (string-append
2512 "mirror://xorg/X11R7.7/src/everything/xf86-video-mach64-"
2513 version
2514 ".tar.bz2"))
2515 (sha256
2516 (base32
2517 "0kl3kvpc2ny48z89313i9fi4cxzwb2pllvxcr9j5ly680ygx8slz"))))
2518 (build-system gnu-build-system)
2519 (inputs `(("mesa" ,mesa)
2520 ("pkg-config" ,pkg-config)
2521 ("xf86driproto" ,xf86driproto)
2522 ("xorg-server" ,xorg-server)))
2523 (home-page "http://www.x.org/wiki/")
2524 (synopsis "xorg implementation of the X Window System")
2525 (description "X.org provides an implementation of the X Window System")
2526 (license license:x11)))
2527
2528
2529 (define-public xf86-video-mga
2530 (package
2531 (name "xf86-video-mga")
2532 (version "1.5.0")
2533 (source
2534 (origin
2535 (method url-fetch)
2536 (uri (string-append
2537 "mirror://xorg/X11R7.7/src/everything/xf86-video-mga-"
2538 version
2539 ".tar.bz2"))
2540 (sha256
2541 (base32
2542 "03l3wz5kz0hmxmzqqbkgn7pf9d956jlag04rb701a0fr1mw3v66a"))))
2543 (build-system gnu-build-system)
2544 (inputs `(("mesa" ,mesa)
2545 ("pkg-config" ,pkg-config)
2546 ("xf86driproto" ,xf86driproto)
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-neomagic
2555 (package
2556 (name "xf86-video-neomagic")
2557 (version "1.2.6")
2558 (source
2559 (origin
2560 (method url-fetch)
2561 (uri (string-append
2562 "mirror://xorg/X11R7.7/src/everything/xf86-video-neomagic-"
2563 version
2564 ".tar.bz2"))
2565 (sha256
2566 (base32
2567 "124qci48xrk0w2jy91n7vqs7s6q397zyiqqszhmkx6ld7six57mi"))))
2568 (build-system gnu-build-system)
2569 (inputs `(("pkg-config" ,pkg-config)
2570 ("xf86dgaproto" ,xf86dgaproto)
2571 ("xorg-server" ,xorg-server)))
2572 (home-page "http://www.x.org/wiki/")
2573 (synopsis "xorg implementation of the X Window System")
2574 (description "X.org provides an implementation of the X Window System")
2575 (license license:x11)))
2576
2577
2578 (define-public xf86-video-newport
2579 (package
2580 (name "xf86-video-newport")
2581 (version "0.2.4")
2582 (source
2583 (origin
2584 (method url-fetch)
2585 (uri (string-append
2586 "mirror://xorg/X11R7.7/src/everything/xf86-video-newport-"
2587 version
2588 ".tar.bz2"))
2589 (sha256
2590 (base32
2591 "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
2592 (build-system gnu-build-system)
2593 (inputs `(("pkg-config" ,pkg-config)
2594 ("xorg-server" ,xorg-server)))
2595 (home-page "http://www.x.org/wiki/")
2596 (synopsis "xorg implementation of the X Window System")
2597 (description "X.org provides an implementation of the X Window System")
2598 (license license:x11)))
2599
2600
2601 (define-public xf86-video-nv
2602 (package
2603 (name "xf86-video-nv")
2604 (version "2.1.18")
2605 (source
2606 (origin
2607 (method url-fetch)
2608 (uri (string-append
2609 "mirror://xorg/X11R7.7/src/everything/xf86-video-nv-"
2610 version
2611 ".tar.bz2"))
2612 (sha256
2613 (base32
2614 "05glbi9jc7j9nm4sf4qvl3z87s48ibm3i283lqz85kbphg62dxvc"))))
2615 (build-system gnu-build-system)
2616 (inputs `(("pkg-config" ,pkg-config)
2617 ("xorg-server" ,xorg-server)))
2618 (home-page "http://www.x.org/wiki/")
2619 (synopsis "xorg implementation of the X Window System")
2620 (description "X.org provides an implementation of the X Window System")
2621 (license license:x11)))
2622
2623
2624 (define-public xf86-video-openchrome
2625 (package
2626 (name "xf86-video-openchrome")
2627 (version "0.2.906")
2628 (source
2629 (origin
2630 (method url-fetch)
2631 (uri (string-append
2632 "mirror://xorg/X11R7.7/src/everything/xf86-video-openchrome-"
2633 version
2634 ".tar.bz2"))
2635 (sha256
2636 (base32
2637 "0hgzn1r7ig94xbr9dvq0bp1nxqlfp2ki8823jca3f22a2kf8wmg7"))))
2638 (build-system gnu-build-system)
2639 (inputs `(("libx11" ,libx11)
2640 ("libxext" ,libxext)
2641 ("libxvmc" ,libxvmc)
2642 ("mesa" ,mesa)
2643 ("pkg-config" ,pkg-config)
2644 ("xf86driproto" ,xf86driproto)
2645 ("xorg-server" ,xorg-server)))
2646 (home-page "http://www.x.org/wiki/")
2647 (synopsis "xorg implementation of the X Window System")
2648 (description "X.org provides an implementation of the X Window System")
2649 (license license:x11)))
2650
2651
2652 (define-public xf86-video-r128
2653 (package
2654 (name "xf86-video-r128")
2655 (version "6.8.2")
2656 (source
2657 (origin
2658 (method url-fetch)
2659 (uri (string-append
2660 "mirror://xorg/X11R7.7/src/everything/xf86-video-r128-"
2661 version
2662 ".tar.bz2"))
2663 (sha256
2664 (base32
2665 "1c84x40k9qz9dnf5qs6nnjcgz7px6mpc3rbk8mj62zhp7mf16hbv"))))
2666 (build-system gnu-build-system)
2667 (inputs `(("mesa" ,mesa)
2668 ("pkg-config" ,pkg-config)
2669 ("xf86driproto" ,xf86driproto)
2670 ("xorg-server" ,xorg-server)))
2671 (home-page "http://www.x.org/wiki/")
2672 (synopsis "xorg implementation of the X Window System")
2673 (description "X.org provides an implementation of the X Window System")
2674 (license license:x11)))
2675
2676
2677 (define-public xf86-video-savage
2678 (package
2679 (name "xf86-video-savage")
2680 (version "2.3.4")
2681 (source
2682 (origin
2683 (method url-fetch)
2684 (uri (string-append
2685 "mirror://xorg/X11R7.7/src/everything/xf86-video-savage-"
2686 version
2687 ".tar.bz2"))
2688 (sha256
2689 (base32
2690 "0jdy4wv3k3ylx3lajjcbsg37z2hf6366a1jvv16sv1ln6dk6lris"))))
2691 (build-system gnu-build-system)
2692 (inputs `(("mesa" ,mesa)
2693 ("pkg-config" ,pkg-config)
2694 ("xf86driproto" ,xf86driproto)
2695 ("xorg-server" ,xorg-server)))
2696 (home-page "http://www.x.org/wiki/")
2697 (synopsis "xorg implementation of the X Window System")
2698 (description "X.org provides an implementation of the X Window System")
2699 (license license:x11)))
2700
2701
2702 (define-public xf86-video-siliconmotion
2703 (package
2704 (name "xf86-video-siliconmotion")
2705 (version "1.7.6")
2706 (source
2707 (origin
2708 (method url-fetch)
2709 (uri (string-append
2710 "mirror://xorg/X11R7.7/src/everything/xf86-video-siliconmotion-"
2711 version
2712 ".tar.bz2"))
2713 (sha256
2714 (base32
2715 "01sdl6ky1vmvmfgx2d44i35rqafi0z07xdy40cvindcr2k91p7x5"))))
2716 (build-system gnu-build-system)
2717 (inputs `(("pkg-config" ,pkg-config)
2718 ("xorg-server" ,xorg-server)))
2719 (home-page "http://www.x.org/wiki/")
2720 (synopsis "xorg implementation of the X Window System")
2721 (description "X.org provides an implementation of the X Window System")
2722 (license license:x11)))
2723
2724
2725 (define-public xf86-video-sis
2726 (package
2727 (name "xf86-video-sis")
2728 (version "0.10.4")
2729 (source
2730 (origin
2731 (method url-fetch)
2732 (uri (string-append
2733 "mirror://xorg/X11R7.7/src/everything/xf86-video-sis-"
2734 version
2735 ".tar.bz2"))
2736 (sha256
2737 (base32
2738 "03diq0l93lfsipmwkpdb2ysgbxxryl6yakpghzc3fksjxa01112f"))))
2739 (build-system gnu-build-system)
2740 (inputs `(("mesa" ,mesa)
2741 ("pkg-config" ,pkg-config)
2742 ("xf86dgaproto" ,xf86dgaproto)
2743 ("xf86driproto" ,xf86driproto)
2744 ("xorg-server" ,xorg-server)))
2745 (home-page "http://www.x.org/wiki/")
2746 (synopsis "xorg implementation of the X Window System")
2747 (description "X.org provides an implementation of the X Window System")
2748 (license license:bsd-3)))
2749
2750
2751 (define-public xf86-video-suncg6
2752 (package
2753 (name "xf86-video-suncg6")
2754 (version "1.1.1")
2755 (source
2756 (origin
2757 (method url-fetch)
2758 (uri (string-append
2759 "mirror://xorg/X11R7.7/src/everything/xf86-video-suncg6-"
2760 version
2761 ".tar.bz2"))
2762 (sha256
2763 (base32
2764 "07w0hm63fiy5l3cpcjsl0ig8z84z9r36xm0cmnpiv3g75dy6q8fi"))))
2765 (build-system gnu-build-system)
2766 (inputs `(("pkg-config" ,pkg-config)
2767 ("xorg-server" ,xorg-server)))
2768 (home-page "http://www.x.org/wiki/")
2769 (synopsis "xorg implementation of the X Window System")
2770 (description "X.org provides an implementation of the X Window System")
2771 (license license:x11)))
2772
2773
2774 (define-public xf86-video-sunffb
2775 (package
2776 (name "xf86-video-sunffb")
2777 (version "1.2.1")
2778 (source
2779 (origin
2780 (method url-fetch)
2781 (uri (string-append
2782 "mirror://xorg/X11R7.7/src/everything/xf86-video-sunffb-"
2783 version
2784 ".tar.bz2"))
2785 (sha256
2786 (base32
2787 "04byax4sc1fn183vyyq0q11q730k16h2by4ggjky7s36wgv7ldzx"))))
2788 (build-system gnu-build-system)
2789 (inputs `(("pkg-config" ,pkg-config)
2790 ("xorg-server" ,xorg-server)))
2791 (home-page "http://www.x.org/wiki/")
2792 (synopsis "xorg implementation of the X Window System")
2793 (description "X.org provides an implementation of the X Window System")
2794 (license license:x11)))
2795
2796
2797 (define-public xf86-video-tdfx
2798 (package
2799 (name "xf86-video-tdfx")
2800 (version "1.4.4")
2801 (source
2802 (origin
2803 (method url-fetch)
2804 (uri (string-append
2805 "mirror://xorg/X11R7.7/src/everything/xf86-video-tdfx-"
2806 version
2807 ".tar.bz2"))
2808 (sha256
2809 (base32
2810 "124gsi30rj547jjd7gvv7xykfnwlyrxw0gcacamby7pvl3g33fg0"))))
2811 (build-system gnu-build-system)
2812 (inputs `(("mesa" ,mesa)
2813 ("pkg-config" ,pkg-config)
2814 ("xf86driproto" ,xf86driproto)
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-tga
2823 (package
2824 (name "xf86-video-tga")
2825 (version "1.2.1")
2826 (source
2827 (origin
2828 (method url-fetch)
2829 (uri (string-append
2830 "mirror://xorg/X11R7.7/src/everything/xf86-video-tga-"
2831 version
2832 ".tar.bz2"))
2833 (sha256
2834 (base32
2835 "0mdqrn02zzkdnmhg4vh9djaawg6b2p82g5qbj66z8b30yr77b93h"))))
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 (define-public xf86-video-trident
2847 (package
2848 (name "xf86-video-trident")
2849 (version "1.3.5")
2850 (source
2851 (origin
2852 (method url-fetch)
2853 (uri (string-append
2854 "mirror://xorg/X11R7.7/src/everything/xf86-video-trident-"
2855 version
2856 ".tar.bz2"))
2857 (sha256
2858 (base32
2859 "02y5pzdp0a1c12jr8gghbrzgbyfbgq67x7kd7n4f323pmf8x1csb"))))
2860 (build-system gnu-build-system)
2861 (inputs `(("pkg-config" ,pkg-config)
2862 ("xf86dgaproto" ,xf86dgaproto)
2863 ("xorg-server" ,xorg-server)))
2864 (home-page "http://www.x.org/wiki/")
2865 (synopsis "xorg implementation of the X Window System")
2866 (description "X.org provides an implementation of the X Window System")
2867 (license license:x11)))
2868
2869
2870 ;; no license
2871 ;; (define-public xf86-video-v4l
2872
2873
2874 (define-public xf86-video-vesa
2875 (package
2876 (name "xf86-video-vesa")
2877 (version "2.3.1")
2878 (source
2879 (origin
2880 (method url-fetch)
2881 (uri (string-append
2882 "mirror://xorg/X11R7.7/src/everything/xf86-video-vesa-"
2883 version
2884 ".tar.bz2"))
2885 (sha256
2886 (base32
2887 "0wqms28kkz2fvghqhqwp6w8zj7k5cgwnhzvkc7j4v268bf6h78g4"))))
2888 (build-system gnu-build-system)
2889 (inputs `(("pkg-config" ,pkg-config)
2890 ("xorg-server" ,xorg-server)))
2891 (home-page "http://www.x.org/wiki/")
2892 (synopsis "xorg implementation of the X Window System")
2893 (description "X.org provides an implementation of the X Window System")
2894 (license license:x11)))
2895
2896
2897 (define-public xf86-video-vmware
2898 (package
2899 (name "xf86-video-vmware")
2900 (version "12.0.2")
2901 (source
2902 (origin
2903 (method url-fetch)
2904 (uri (string-append
2905 "mirror://xorg/X11R7.7/src/everything/xf86-video-vmware-"
2906 version
2907 ".tar.bz2"))
2908 (sha256
2909 (base32
2910 "0isiwx516gww8hfk3vy7js83yziyjym9mq2zjadyq1a8v5gqf9y8"))))
2911 (build-system gnu-build-system)
2912 (inputs `(("libx11" ,libx11)
2913 ("libxext" ,libxext)
2914 ("pkg-config" ,pkg-config)
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 (define-public xf86-video-voodoo
2923 (package
2924 (name "xf86-video-voodoo")
2925 (version "1.2.4")
2926 (source
2927 (origin
2928 (method url-fetch)
2929 (uri (string-append
2930 "mirror://xorg/X11R7.7/src/everything/xf86-video-voodoo-"
2931 version
2932 ".tar.bz2"))
2933 (sha256
2934 (base32
2935 "0ha748yz92yzn6hp2rhin3il8f4j2rs4vkgdvqkagnv1ryxkh0ph"))))
2936 (build-system gnu-build-system)
2937 (inputs `(("pkg-config" ,pkg-config)
2938 ("xf86dgaproto" ,xf86dgaproto)
2939 ("xorg-server" ,xorg-server)))
2940 (home-page "http://www.x.org/wiki/")
2941 (synopsis "xorg implementation of the X Window System")
2942 (description "X.org provides an implementation of the X Window System")
2943 (license license:x11)))
2944
2945
2946 ;; Only relevant for the frame buffer on BSD systems.
2947 ;; (define-public xf86-video-wsfb
2948
2949
2950 (define-public xf86bigfontproto
2951 (package
2952 (name "xf86bigfontproto")
2953 (version "1.2.0")
2954 (source
2955 (origin
2956 (method url-fetch)
2957 (uri (string-append
2958 "mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-"
2959 version
2960 ".tar.bz2"))
2961 (sha256
2962 (base32
2963 "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
2964 (build-system gnu-build-system)
2965 (home-page "http://www.x.org/wiki/")
2966 (synopsis "xorg implementation of the X Window System")
2967 (description "X.org provides an implementation of the X Window System")
2968 (license license:x11)))
2969
2970
2971 (define-public xf86dgaproto
2972 (package
2973 (name "xf86dgaproto")
2974 (version "2.1")
2975 (source
2976 (origin
2977 (method url-fetch)
2978 (uri (string-append
2979 "mirror://xorg/X11R7.7/src/everything/xf86dgaproto-"
2980 version
2981 ".tar.bz2"))
2982 (sha256
2983 (base32
2984 "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
2985 (build-system gnu-build-system)
2986 (home-page "http://www.x.org/wiki/")
2987 (synopsis "xorg implementation of the X Window System")
2988 (description "X.org provides an implementation of the X Window System")
2989 (license license:x11)))
2990
2991
2992 (define-public xf86driproto
2993 (package
2994 (name "xf86driproto")
2995 (version "2.1.1")
2996 (source
2997 (origin
2998 (method url-fetch)
2999 (uri (string-append
3000 "mirror://xorg/X11R7.7/src/everything/xf86driproto-"
3001 version
3002 ".tar.bz2"))
3003 (sha256
3004 (base32
3005 "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
3006 (build-system gnu-build-system)
3007 (home-page "http://www.x.org/wiki/")
3008 (synopsis "xorg implementation of the X Window System")
3009 (description "X.org provides an implementation of the X Window System")
3010 (license license:x11)))
3011
3012
3013 (define-public xf86vidmodeproto
3014 (package
3015 (name "xf86vidmodeproto")
3016 (version "2.3.1")
3017 (source
3018 (origin
3019 (method url-fetch)
3020 (uri (string-append
3021 "mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-"
3022 version
3023 ".tar.bz2"))
3024 (sha256
3025 (base32
3026 "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
3027 (build-system gnu-build-system)
3028 (home-page "http://www.x.org/wiki/")
3029 (synopsis "xorg implementation of the X Window System")
3030 (description "X.org provides an implementation of the X Window System")
3031 (license license:x11)))
3032
3033
3034 (define-public xgamma
3035 (package
3036 (name "xgamma")
3037 (version "1.0.5")
3038 (source
3039 (origin
3040 (method url-fetch)
3041 (uri (string-append
3042 "mirror://xorg/X11R7.7/src/everything/xgamma-"
3043 version
3044 ".tar.bz2"))
3045 (sha256
3046 (base32
3047 "0463sawps86jnxn121ramsz4sicy3az5wa5wsq4rqm8dm3za48p3"))))
3048 (build-system gnu-build-system)
3049 (inputs
3050 `(("libxxf86vm" ,libxxf86vm)
3051 ("libx11" ,libx11)
3052 ("pkg-config" ,pkg-config)))
3053 (home-page "http://www.x.org/wiki/")
3054 (synopsis "xorg implementation of the X Window System")
3055 (description "X.org provides an implementation of the X Window System")
3056 (license license:x11)))
3057
3058
3059 (define-public xhost
3060 (package
3061 (name "xhost")
3062 (version "1.0.5")
3063 (source
3064 (origin
3065 (method url-fetch)
3066 (uri (string-append
3067 "mirror://xorg/X11R7.7/src/everything/xhost-"
3068 version
3069 ".tar.bz2"))
3070 (sha256
3071 (base32
3072 "0l483y6wfrjh37j16b41kpi2nc7ss5rvndafpbaylrs87ygx2w18"))))
3073 (build-system gnu-build-system)
3074 (inputs
3075 `(("libxmu" ,libxmu)
3076 ("libxau" ,libxau)
3077 ("libx11" ,libx11)
3078 ("pkg-config" ,pkg-config)))
3079 (home-page "http://www.x.org/wiki/")
3080 (synopsis "xorg implementation of the X Window System")
3081 (description "X.org provides an implementation of the X Window System")
3082 (license license:x11)))
3083
3084
3085 (define-public xineramaproto
3086 (package
3087 (name "xineramaproto")
3088 (version "1.2.1")
3089 (source
3090 (origin
3091 (method url-fetch)
3092 (uri (string-append
3093 "mirror://xorg/X11R7.7/src/everything/xineramaproto-"
3094 version
3095 ".tar.bz2"))
3096 (sha256
3097 (base32
3098 "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
3099 (build-system gnu-build-system)
3100 (inputs `(("pkg-config" ,pkg-config)))
3101 (home-page "http://www.x.org/wiki/")
3102 (synopsis "xorg implementation of the X Window System")
3103 (description "X.org provides an implementation of the X Window System")
3104 (license license:x11)))
3105
3106
3107 (define-public xinput
3108 (package
3109 (name "xinput")
3110 (version "1.6.0")
3111 (source
3112 (origin
3113 (method url-fetch)
3114 (uri (string-append
3115 "mirror://xorg/X11R7.7/src/everything/xinput-"
3116 version
3117 ".tar.bz2"))
3118 (sha256
3119 (base32
3120 "0zl4cdgnzh9shz20yn7hz889v4nkbyqwx0nb7dh6arn7abchgc2a"))))
3121 (build-system gnu-build-system)
3122 (inputs
3123 `(("libxrender" ,libxrender)
3124 ("libxrandr" ,libxrandr)
3125 ("libxinerama" ,libxinerama)
3126 ("libxi" ,libxi)
3127 ("libx11" ,libx11)
3128 ("inputproto" ,inputproto)
3129 ("pkg-config" ,pkg-config)))
3130 (home-page "http://www.x.org/wiki/")
3131 (synopsis "xorg implementation of the X Window System")
3132 (description "X.org provides an implementation of the X Window System")
3133 (license license:x11)))
3134
3135
3136 (define xkbcomp-intermediate ; used as input for xkeyboard-config
3137 (package
3138 (name "xkbcomp-intermediate")
3139 (version "1.2.4")
3140 (source
3141 (origin
3142 (method url-fetch)
3143 (uri (string-append
3144 "mirror://xorg/X11R7.7/src/everything/xkbcomp-"
3145 version
3146 ".tar.bz2"))
3147 (sha256
3148 (base32
3149 "0bas1d2wjiy5zy9d0g92d2p9pwv4aapfbfidi7hxy8ax8jmwkl4i"))))
3150 (build-system gnu-build-system)
3151 (inputs
3152 `(("xproto" ,xproto)
3153 ("libxkbfile" ,libxkbfile)
3154 ("libx11" ,libx11)
3155 ("pkg-config" ,pkg-config)))
3156 (home-page "http://www.x.org/wiki/")
3157 (synopsis "xorg implementation of the X Window System")
3158 (description "X.org provides an implementation of the X Window System")
3159 (license license:x11)))
3160
3161 (define-public xkbcomp ; using xkeyboard-config as input
3162 (package (inherit xkbcomp-intermediate)
3163 (name "xkbcomp")
3164 (inputs
3165 `(,@(package-inputs xkbcomp-intermediate)
3166 ("xkeyboard-config" ,xkeyboard-config)))
3167 (arguments
3168 `(#:configure-flags
3169 (list (string-append "--with-xkb-config-root="
3170 (assoc-ref %build-inputs "xkeyboard-config")
3171 "/share/X11/xkb"))))))
3172
3173
3174 (define-public xkbevd
3175 (package
3176 (name "xkbevd")
3177 (version "1.1.3")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (string-append
3182 "mirror://xorg/X11R7.7/src/everything/xkbevd-"
3183 version
3184 ".tar.bz2"))
3185 (sha256
3186 (base32
3187 "05h1xcnbalndbrryyqs8wzy9h3wz655vc0ymhlk2q4aik17licjm"))))
3188 (build-system gnu-build-system)
3189 (inputs
3190 `(("libxkbfile" ,libxkbfile)
3191 ("libx11" ,libx11)
3192 ("pkg-config" ,pkg-config)))
3193 (home-page "http://www.x.org/wiki/")
3194 (synopsis "xorg implementation of the X Window System")
3195 (description "X.org provides an implementation of the X Window System")
3196 (license license:x11)))
3197
3198
3199 (define-public xkbutils
3200 (package
3201 (name "xkbutils")
3202 (version "1.0.3")
3203 (source
3204 (origin
3205 (method url-fetch)
3206 (uri (string-append
3207 "mirror://xorg/X11R7.7/src/everything/xkbutils-"
3208 version
3209 ".tar.bz2"))
3210 (sha256
3211 (base32
3212 "1ga913pw6chssf2016kjyjl6ar2lj83pa497w97ak2kq603sy2g4"))))
3213 (build-system gnu-build-system)
3214 (inputs
3215 `(("libxt" ,libxt)
3216 ("xproto" ,xproto)
3217 ("libxaw" ,libxaw)
3218 ("inputproto" ,inputproto)
3219 ("pkg-config" ,pkg-config)))
3220 (home-page "http://www.x.org/wiki/")
3221 (synopsis "xorg implementation of the X Window System")
3222 (description "X.org provides an implementation of the X Window System")
3223 (license license:x11)))
3224
3225
3226 (define-public xkeyboard-config
3227 (package
3228 (name "xkeyboard-config")
3229 (version "2.6")
3230 (source
3231 (origin
3232 (method url-fetch)
3233 (uri (string-append
3234 "mirror://xorg/X11R7.7/src/everything/xkeyboard-config-"
3235 version
3236 ".tar.bz2"))
3237 (sha256
3238 (base32
3239 "1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
3240 (build-system gnu-build-system)
3241 (inputs
3242 `(("gettext" ,gnu-gettext)
3243 ("intltool" ,intltool)
3244 ("libx11" ,libx11)
3245 ("pkg-config" ,pkg-config)
3246 ("xkbcomp-intermediate" ,xkbcomp-intermediate)))
3247 (home-page "http://www.x.org/wiki/")
3248 (synopsis "xorg implementation of the X Window System")
3249 (description "X.org provides an implementation of the X Window System")
3250 (license license:x11)))
3251
3252
3253 (define-public xkill
3254 (package
3255 (name "xkill")
3256 (version "1.0.3")
3257 (source
3258 (origin
3259 (method url-fetch)
3260 (uri (string-append
3261 "mirror://xorg/X11R7.7/src/everything/xkill-"
3262 version
3263 ".tar.bz2"))
3264 (sha256
3265 (base32
3266 "1ac110qbb9a4x1dim3vaghvdk3jc708i2p3f4rmag33458khg0xx"))))
3267 (build-system gnu-build-system)
3268 (inputs
3269 `(("libxmu" ,libxmu)
3270 ("libx11" ,libx11)
3271 ("pkg-config" ,pkg-config)))
3272 (home-page "http://www.x.org/wiki/")
3273 (synopsis "xorg implementation of the X Window System")
3274 (description "X.org provides an implementation of the X Window System")
3275 (license license:x11)))
3276
3277
3278 (define-public xlsatoms
3279 (package
3280 (name "xlsatoms")
3281 (version "1.1.1")
3282 (source
3283 (origin
3284 (method url-fetch)
3285 (uri (string-append
3286 "mirror://xorg/X11R7.7/src/everything/xlsatoms-"
3287 version
3288 ".tar.bz2"))
3289 (sha256
3290 (base32
3291 "1y9nfl8s7njxbnci8c20j986xixharasgg40vdw92y593j6dk2rv"))))
3292 (build-system gnu-build-system)
3293 (inputs
3294 `(("libxcb" ,libxcb)
3295 ("pkg-config" ,pkg-config)))
3296 (home-page "http://www.x.org/wiki/")
3297 (synopsis "xorg implementation of the X Window System")
3298 (description "X.org provides an implementation of the X Window System")
3299 (license license:x11)))
3300
3301
3302 (define-public xlsclients
3303 (package
3304 (name "xlsclients")
3305 (version "1.1.2")
3306 (source
3307 (origin
3308 (method url-fetch)
3309 (uri (string-append
3310 "mirror://xorg/X11R7.7/src/everything/xlsclients-"
3311 version
3312 ".tar.bz2"))
3313 (sha256
3314 (base32
3315 "1l97j15mg4wfzpm81wlpzagfjff7v4fwn7s2z2rpksk3gfcg7r8w"))))
3316 (build-system gnu-build-system)
3317 (inputs
3318 `(("libxcb" ,libxcb)
3319 ("pkg-config" ,pkg-config)))
3320 (home-page "http://www.x.org/wiki/")
3321 (synopsis "xorg implementation of the X Window System")
3322 (description "X.org provides an implementation of the X Window System")
3323 (license license:x11)))
3324
3325
3326 (define-public xmodmap
3327 (package
3328 (name "xmodmap")
3329 (version "1.0.7")
3330 (source
3331 (origin
3332 (method url-fetch)
3333 (uri (string-append
3334 "mirror://xorg/X11R7.7/src/everything/xmodmap-"
3335 version
3336 ".tar.bz2"))
3337 (sha256
3338 (base32
3339 "1dg47lay4vhrl9mfq3cfc6741a0m2n8wd4ljagd21ix3qklys8pg"))
3340 (patches (list (search-patch "xmodmap-asprintf.patch")))))
3341 (build-system gnu-build-system)
3342 (inputs
3343 `(("xproto" ,xproto)
3344 ("libx11" ,libx11)
3345 ("pkg-config" ,pkg-config)))
3346 (home-page "http://www.x.org/wiki/")
3347 (synopsis "xorg implementation of the X Window System")
3348 (description "X.org provides an implementation of the X Window System")
3349 (license license:x11)))
3350
3351
3352 ;; no license
3353 ;; (define-public xorg-docs
3354
3355
3356 (define-public xorg-sgml-doctools
3357 (package
3358 (name "xorg-sgml-doctools")
3359 (version "1.11")
3360 (source
3361 (origin
3362 (method url-fetch)
3363 (uri (string-append
3364 "mirror://xorg/X11R7.7/src/everything/xorg-sgml-doctools-"
3365 version
3366 ".tar.bz2"))
3367 (sha256
3368 (base32
3369 "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
3370 (build-system gnu-build-system)
3371 (inputs `(("pkg-config" ,pkg-config)))
3372 (home-page "http://www.x.org/wiki/")
3373 (synopsis "xorg implementation of the X Window System")
3374 (description "X.org provides an implementation of the X Window System")
3375 (license license:x11)))
3376
3377
3378 (define-public xpr
3379 (package
3380 (name "xpr")
3381 (version "1.0.4")
3382 (source
3383 (origin
3384 (method url-fetch)
3385 (uri (string-append
3386 "mirror://xorg/X11R7.7/src/everything/xpr-"
3387 version
3388 ".tar.bz2"))
3389 (sha256
3390 (base32
3391 "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
3392 (build-system gnu-build-system)
3393 (inputs
3394 `(("xproto" ,xproto)
3395 ("libxmu" ,libxmu)
3396 ("libx11" ,libx11)
3397 ("pkg-config" ,pkg-config)))
3398 (home-page "http://www.x.org/wiki/")
3399 (synopsis "xorg implementation of the X Window System")
3400 (description "X.org provides an implementation of the X Window System")
3401 (license license:x11)))
3402
3403
3404 (define-public xprop
3405 (package
3406 (name "xprop")
3407 (version "1.2.1")
3408 (source
3409 (origin
3410 (method url-fetch)
3411 (uri (string-append
3412 "mirror://xorg/X11R7.7/src/everything/xprop-"
3413 version
3414 ".tar.bz2"))
3415 (sha256
3416 (base32
3417 "18zi2any13zlb7f34fzyw6lkiwkd6k2scp3b800a1f4rj0c7m407"))))
3418 (build-system gnu-build-system)
3419 (inputs
3420 `(("xproto" ,xproto)
3421 ("libx11" ,libx11)
3422 ("pkg-config" ,pkg-config)))
3423 (home-page "http://www.x.org/wiki/")
3424 (synopsis "xorg implementation of the X Window System")
3425 (description "X.org provides an implementation of the X Window System")
3426 (license license:x11)))
3427
3428
3429 (define-public xrandr
3430 (package
3431 (name "xrandr")
3432 (version "1.3.5")
3433 (source
3434 (origin
3435 (method url-fetch)
3436 (uri (string-append
3437 "mirror://xorg/X11R7.7/src/everything/xrandr-"
3438 version
3439 ".tar.bz2"))
3440 (sha256
3441 (base32
3442 "03lq1c1q4w5cf2ijs4b34v008lshibha9zv5lw08xpyhk9xgyn8h"))))
3443 (build-system gnu-build-system)
3444 (inputs
3445 `(("libxrender" ,libxrender)
3446 ("libxrandr" ,libxrandr)
3447 ("xproto" ,xproto)
3448 ("libx11" ,libx11)
3449 ("pkg-config" ,pkg-config)))
3450 (home-page "http://www.x.org/wiki/")
3451 (synopsis "xorg implementation of the X Window System")
3452 (description "X.org provides an implementation of the X Window System")
3453 (license license:x11)))
3454
3455
3456 (define-public xrdb
3457 (package
3458 (name "xrdb")
3459 (version "1.0.9")
3460 (source
3461 (origin
3462 (method url-fetch)
3463 (uri (string-append
3464 "mirror://xorg/X11R7.7/src/everything/xrdb-"
3465 version
3466 ".tar.bz2"))
3467 (sha256
3468 (base32
3469 "1dza5a34nj68fzhlgwf18i5bk0n24ig28yihwpjy7vwn57hh2934"))))
3470 (build-system gnu-build-system)
3471 (inputs
3472 `(("libxmu" ,libxmu)
3473 ("libx11" ,libx11)
3474 ("pkg-config" ,pkg-config)))
3475 (home-page "http://www.x.org/wiki/")
3476 (synopsis "xorg implementation of the X Window System")
3477 (description "X.org provides an implementation of the X Window System")
3478 (license license:x11)))
3479
3480
3481 (define-public xrefresh
3482 (package
3483 (name "xrefresh")
3484 (version "1.0.4")
3485 (source
3486 (origin
3487 (method url-fetch)
3488 (uri (string-append
3489 "mirror://xorg/X11R7.7/src/everything/xrefresh-"
3490 version
3491 ".tar.bz2"))
3492 (sha256
3493 (base32
3494 "0ywxzwa4kmnnmf8idr8ssgcil9xvbhnk155zpsh2i8ay93mh5586"))))
3495 (build-system gnu-build-system)
3496 (inputs
3497 `(("libx11" ,libx11)
3498 ("pkg-config" ,pkg-config)))
3499 (home-page "http://www.x.org/wiki/")
3500 (synopsis "xorg implementation of the X Window System")
3501 (description "X.org provides an implementation of the X Window System")
3502 (license license:x11)))
3503
3504
3505 (define-public xset
3506 (package
3507 (name "xset")
3508 (version "1.2.2")
3509 (source
3510 (origin
3511 (method url-fetch)
3512 (uri (string-append
3513 "mirror://xorg/X11R7.7/src/everything/xset-"
3514 version
3515 ".tar.bz2"))
3516 (sha256
3517 (base32
3518 "1s61mvscd0h7y6anljarj7nkii6plhs8ndx1fm8b1f1h00a1qdv1"))))
3519 (build-system gnu-build-system)
3520 (inputs
3521 `(("xproto" ,xproto)
3522 ("libxmu" ,libxmu)
3523 ("libxext" ,libxext)
3524 ("libx11" ,libx11)
3525 ("pkg-config" ,pkg-config)))
3526 (home-page "http://www.x.org/wiki/")
3527 (synopsis "xorg implementation of the X Window System")
3528 (description "X.org provides an implementation of the X Window System")
3529 (license license:x11)))
3530
3531
3532 (define-public xsetroot
3533 (package
3534 (name "xsetroot")
3535 (version "1.1.0")
3536 (source
3537 (origin
3538 (method url-fetch)
3539 (uri (string-append
3540 "mirror://xorg/X11R7.7/src/everything/xsetroot-"
3541 version
3542 ".tar.bz2"))
3543 (sha256
3544 (base32
3545 "1bazzsf9sy0q2bj4lxvh1kvyrhmpggzb7jg575i15sksksa3xwc8"))))
3546 (build-system gnu-build-system)
3547 (inputs
3548 `(("libxmu" ,libxmu)
3549 ("libxcursor" ,libxcursor)
3550 ("xbitmaps" ,xbitmaps)
3551 ("pkg-config" ,pkg-config)))
3552 (home-page "http://www.x.org/wiki/")
3553 (synopsis "xorg implementation of the X Window System")
3554 (description "X.org provides an implementation of the X Window System")
3555 (license license:x11)))
3556
3557
3558 (define-public xtrans
3559 (package
3560 (name "xtrans")
3561 (version "1.2.7")
3562 (source
3563 (origin
3564 (method url-fetch)
3565 (uri (string-append
3566 "mirror://xorg/X11R7.7/src/everything/xtrans-"
3567 version
3568 ".tar.bz2"))
3569 (sha256
3570 (base32
3571 "19p1bw3qyn0ia1znx6q3gx92rr9rl88ylrfijjclm8vhpa8i30bz"))))
3572 (build-system gnu-build-system)
3573 (inputs `(("pkg-config" ,pkg-config)))
3574 (home-page "http://www.x.org/wiki/")
3575 (synopsis "xorg implementation of the X Window System")
3576 (description "X.org provides an implementation of the X Window System")
3577 (license license:x11)))
3578
3579
3580 (define-public xvinfo
3581 (package
3582 (name "xvinfo")
3583 (version "1.1.1")
3584 (source
3585 (origin
3586 (method url-fetch)
3587 (uri (string-append
3588 "mirror://xorg/X11R7.7/src/everything/xvinfo-"
3589 version
3590 ".tar.bz2"))
3591 (sha256
3592 (base32
3593 "119rd93d7661ll1rfcdssn78l0b97326smziyr2f5wdwj2hlmiv0"))))
3594 (build-system gnu-build-system)
3595 (inputs
3596 `(("libxext" ,libxext)
3597 ("libxv" ,libxv)
3598 ("libx11" ,libx11)
3599 ("pkg-config" ,pkg-config)))
3600 (home-page "http://www.x.org/wiki/")
3601 (synopsis "xorg implementation of the X Window System")
3602 (description "X.org provides an implementation of the X Window System")
3603 (license license:x11)))
3604
3605
3606 (define-public xwd
3607 (package
3608 (name "xwd")
3609 (version "1.0.5")
3610 (source
3611 (origin
3612 (method url-fetch)
3613 (uri (string-append
3614 "mirror://xorg/X11R7.7/src/everything/xwd-"
3615 version
3616 ".tar.bz2"))
3617 (sha256
3618 (base32
3619 "0fkg6msy2zg7rda2rpxb7j6vmrdmqmk72xsxnyhz97196ykjnx82"))))
3620 (build-system gnu-build-system)
3621 (inputs
3622 `(("libxt" ,libxt)
3623 ("xproto" ,xproto)
3624 ("pkg-config" ,pkg-config)))
3625 (home-page "http://www.x.org/wiki/")
3626 (synopsis "xorg implementation of the X Window System")
3627 (description "X.org provides an implementation of the X Window System")
3628 (license license:x11)))
3629
3630
3631 (define-public xwininfo
3632 (package
3633 (name "xwininfo")
3634 (version "1.1.2")
3635 (source
3636 (origin
3637 (method url-fetch)
3638 (uri (string-append
3639 "mirror://xorg/X11R7.7/src/everything/xwininfo-"
3640 version
3641 ".tar.bz2"))
3642 (sha256
3643 (base32
3644 "0fmcr5yl03xw7m8p9h1rk67rrj7gp5x16a547xhmg8idw2f6r9lg"))))
3645 (build-system gnu-build-system)
3646 (inputs
3647 `(("libx11" ,libx11)
3648 ("pkg-config" ,pkg-config)
3649 ("xproto" ,xproto)))
3650 (home-page "http://www.x.org/wiki/")
3651 (synopsis "xorg implementation of the X Window System")
3652 (description "X.org provides an implementation of the X Window System")
3653 (license license:x11)))
3654
3655
3656 (define-public xwud
3657 (package
3658 (name "xwud")
3659 (version "1.0.4")
3660 (source
3661 (origin
3662 (method url-fetch)
3663 (uri (string-append
3664 "mirror://xorg/X11R7.7/src/everything/xwud-"
3665 version
3666 ".tar.bz2"))
3667 (sha256
3668 (base32
3669 "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
3670 (build-system gnu-build-system)
3671 (inputs
3672 `(("xproto" ,xproto)
3673 ("libx11" ,libx11)
3674 ("pkg-config" ,pkg-config)))
3675 (home-page "http://www.x.org/wiki/")
3676 (synopsis "xorg implementation of the X Window System")
3677 (description "X.org provides an implementation of the X Window System")
3678 (license license:x11)))
3679
3680
3681
3682 ;; packages of height 1 in the propagated-inputs tree
3683
3684 (define-public fixesproto
3685 (package
3686 (name "fixesproto")
3687 (version "5.0")
3688 (source
3689 (origin
3690 (method url-fetch)
3691 (uri (string-append
3692 "mirror://xorg/X11R7.7/src/everything/fixesproto-"
3693 version
3694 ".tar.bz2"))
3695 (sha256
3696 (base32
3697 "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
3698 (build-system gnu-build-system)
3699 (propagated-inputs
3700 `(("xextproto" ,xextproto)))
3701 (inputs
3702 `(("pkg-config" ,pkg-config)))
3703 (home-page "http://www.x.org/wiki/")
3704 (synopsis "xorg implementation of the X Window System")
3705 (description "X.org provides an implementation of the X Window System")
3706 (license license:x11)))
3707
3708
3709 (define-public libxdamage
3710 (package
3711 (name "libxdamage")
3712 (version "1.1.3")
3713 (source
3714 (origin
3715 (method url-fetch)
3716 (uri (string-append
3717 "mirror://xorg/X11R7.7/src/everything/libXdamage-"
3718 version
3719 ".tar.bz2"))
3720 (sha256
3721 (base32
3722 "1a678bwap74sqczbr2z4y4fvbr35km3inkm8bi1igjyk4v46jqdw"))))
3723 (build-system gnu-build-system)
3724 (propagated-inputs
3725 `(("damageproto" ,damageproto)))
3726 (inputs
3727 `(("xproto" ,xproto)
3728 ("libxfixes" ,libxfixes)
3729 ("libx11" ,libx11)
3730 ("pkg-config" ,pkg-config)))
3731 (home-page "http://www.x.org/wiki/")
3732 (synopsis "xorg implementation of the X Window System")
3733 (description "X.org provides an implementation of the X Window System")
3734 (license license:x11)))
3735
3736
3737 (define-public libxext
3738 (package
3739 (name "libxext")
3740 (version "1.3.1")
3741 (source
3742 (origin
3743 (method url-fetch)
3744 (uri (string-append
3745 "mirror://xorg/X11R7.7/src/everything/libXext-"
3746 version
3747 ".tar.bz2"))
3748 (sha256
3749 (base32
3750 "0ng8clhn7srbkadxjc7ih3z3v27v9ny0aa0dqkgddgxpgrhrq8jn"))))
3751 (build-system gnu-build-system)
3752 (propagated-inputs
3753 `(("xextproto" ,xextproto)))
3754 (inputs
3755 `(("libxau" ,libxau)
3756 ("libx11" ,libx11)
3757 ("pkg-config" ,pkg-config)))
3758 (home-page "http://www.x.org/wiki/")
3759 (synopsis "xorg implementation of the X Window System")
3760 (description "X.org provides an implementation of the X Window System")
3761 (license license:x11)))
3762
3763
3764 (define-public libxinerama
3765 (package
3766 (name "libxinerama")
3767 (version "1.1.2")
3768 (source
3769 (origin
3770 (method url-fetch)
3771 (uri (string-append
3772 "mirror://xorg/X11R7.7/src/everything/libXinerama-"
3773 version
3774 ".tar.bz2"))
3775 (sha256
3776 (base32
3777 "1b3aq1762hxzchd9ndavdjlksq93991s0g2z6spf8wl3v0pprrx4"))))
3778 (build-system gnu-build-system)
3779 (propagated-inputs
3780 `(("xineramaproto" ,xineramaproto)))
3781 (inputs
3782 `(("libxext" ,libxext)
3783 ("libx11" ,libx11)
3784 ("pkg-config" ,pkg-config)))
3785 (home-page "http://www.x.org/wiki/")
3786 (synopsis "xorg implementation of the X Window System")
3787 (description "X.org provides an implementation of the X Window System")
3788 (license license:x11)))
3789
3790
3791 ;; The package is missing from X11R7.7.
3792 (define-public libxp
3793 (package
3794 (name "libxp")
3795 (version "1.0.0")
3796 (source
3797 (origin
3798 (method url-fetch)
3799 (uri (string-append
3800 "mirror://xorg/individual/lib/libXp-"
3801 version
3802 ".tar.bz2"))
3803 (sha256
3804 (base32
3805 "1blwrr5zhmwwy87j0svmhv3hc13acyn5j14n5rv0anz81iav2r3y"))))
3806 (build-system gnu-build-system)
3807 (propagated-inputs
3808 `(("printproto" ,printproto)))
3809 (inputs
3810 `(("libx11" ,libx11)
3811 ("libxext" ,libxext)
3812 ("pkg-config" ,pkg-config)))
3813 (home-page "http://www.x.org/wiki/")
3814 (synopsis "xorg implementation of the X Window System")
3815 (description "X.org provides an implementation of the X Window System")
3816 (license license:x11)))
3817
3818
3819 (define-public libxrender
3820 (package
3821 (name "libxrender")
3822 (version "0.9.7")
3823 (source
3824 (origin
3825 (method url-fetch)
3826 (uri (string-append
3827 "mirror://xorg/X11R7.7/src/everything/libXrender-"
3828 version
3829 ".tar.bz2"))
3830 (sha256
3831 (base32
3832 "1rmvja2gkf5v0k2n1bcghw8v98m2kfn3af0rbmsda5dwr69npd7r"))))
3833 (build-system gnu-build-system)
3834 (propagated-inputs
3835 `(("renderproto" ,renderproto)))
3836 (inputs
3837 `(("xproto" ,xproto)
3838 ("libx11" ,libx11)
3839 ("pkg-config" ,pkg-config)))
3840 (home-page "http://www.x.org/wiki/")
3841 (synopsis "xorg implementation of the X Window System")
3842 (description "X.org provides an implementation of the X Window System")
3843 (license license:x11)))
3844
3845
3846 (define-public libxtst
3847 (package
3848 (name "libxtst")
3849 (version "1.2.1")
3850 (source
3851 (origin
3852 (method url-fetch)
3853 (uri (string-append
3854 "mirror://xorg/X11R7.7/src/everything/libXtst-"
3855 version
3856 ".tar.bz2"))
3857 (sha256
3858 (base32
3859 "1q750hjplq1rfyxkr4545z1y2a1wfnc828ynvbws7b4jwdk3xsky"))))
3860 (build-system gnu-build-system)
3861 (propagated-inputs
3862 `(("recordproto" ,recordproto)))
3863 (inputs
3864 `(("libxi" ,libxi)
3865 ("libx11" ,libx11)
3866 ("inputproto" ,inputproto)
3867 ("pkg-config" ,pkg-config)))
3868 (home-page "http://www.x.org/wiki/")
3869 (synopsis "xorg implementation of the X Window System")
3870 (description "X.org provides an implementation of the X Window System")
3871 (license license:x11)))
3872
3873
3874 (define-public libxv
3875 (package
3876 (name "libxv")
3877 (version "1.0.7")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (string-append
3882 "mirror://xorg/X11R7.7/src/everything/libXv-"
3883 version
3884 ".tar.bz2"))
3885 (sha256
3886 (base32
3887 "044hllz013afhzywwpxz007l4zjy99bv9im065rqd30zckmllrjx"))))
3888 (build-system gnu-build-system)
3889 (propagated-inputs
3890 `(("videoproto" ,videoproto)))
3891 (inputs
3892 `(("xproto" ,xproto)
3893 ("libxext" ,libxext)
3894 ("libx11" ,libx11)
3895 ("pkg-config" ,pkg-config)))
3896 (home-page "http://www.x.org/wiki/")
3897 (synopsis "xorg implementation of the X Window System")
3898 (description "X.org provides an implementation of the X Window System")
3899 (license license:x11)))
3900
3901
3902 (define-public mkfontdir
3903 (package
3904 (name "mkfontdir")
3905 (version "1.0.7")
3906 (source
3907 (origin
3908 (method url-fetch)
3909 (uri (string-append
3910 "mirror://xorg/X11R7.7/src/everything/mkfontdir-"
3911 version
3912 ".tar.bz2"))
3913 (sha256
3914 (base32
3915 "0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
3916 (build-system gnu-build-system)
3917 (propagated-inputs
3918 `(("mkfontscale" ,mkfontscale)))
3919 (inputs
3920 `(("pkg-config" ,pkg-config)))
3921 (home-page "http://www.x.org/wiki/")
3922 (synopsis "xorg implementation of the X Window System")
3923 (description "X.org provides an implementation of the X Window System")
3924 (license license:x11)))
3925
3926
3927 (define-public xproto
3928 (package
3929 (name "xproto")
3930 (version "7.0.23")
3931 (source
3932 (origin
3933 (method url-fetch)
3934 (uri (string-append
3935 "mirror://xorg/X11R7.7/src/everything/xproto-"
3936 version
3937 ".tar.bz2"))
3938 (sha256
3939 (base32
3940 "17lkmi12f89qvg4jj5spqzwzc24fmsqq68dv6kpy7r7b944lmq5d"))))
3941 (build-system gnu-build-system)
3942 (propagated-inputs
3943 `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
3944 (inputs
3945 `(("pkg-config" ,pkg-config)))
3946 (home-page "http://www.x.org/wiki/")
3947 (synopsis "xorg implementation of the X Window System")
3948 (description "X.org provides an implementation of the X Window System")
3949 (license license:x11)))
3950
3951
3952
3953 ;; packages of height 2 in the propagated-inputs tree
3954
3955 (define-public libice
3956 (package
3957 (name "libice")
3958 (version "1.0.8")
3959 (source
3960 (origin
3961 (method url-fetch)
3962 (uri (string-append
3963 "mirror://xorg/X11R7.7/src/everything/libICE-"
3964 version
3965 ".tar.bz2"))
3966 (sha256
3967 (base32
3968 "07mp13pb3s73kj7y490gnx619znzwk91mlf8kdw0rzq29ll93a94"))))
3969 (build-system gnu-build-system)
3970 (propagated-inputs
3971 `(("xproto" ,xproto)))
3972 (inputs
3973 `(("xtrans" ,xtrans)
3974 ("pkg-config" ,pkg-config)))
3975 (home-page "http://www.x.org/wiki/")
3976 (synopsis "xorg implementation of the X Window System")
3977 (description "X.org provides an implementation of the X Window System")
3978 (license license:x11)))
3979
3980
3981 (define-public libxau
3982 (package
3983 (name "libxau")
3984 (version "1.0.7")
3985 (source
3986 (origin
3987 (method url-fetch)
3988 (uri (string-append
3989 "mirror://xorg/X11R7.7/src/everything/libXau-"
3990 version
3991 ".tar.bz2"))
3992 (sha256
3993 (base32
3994 "12d4f7sdv2pjxhk0lcay0pahccddszkw579dc59daqi37r8bllvi"))))
3995 (build-system gnu-build-system)
3996 (propagated-inputs
3997 `(("xproto" ,xproto)))
3998 (inputs
3999 `(("pkg-config" ,pkg-config)))
4000 (home-page "http://www.x.org/wiki/")
4001 (synopsis "xorg implementation of the X Window System")
4002 (description "X.org provides an implementation of the X Window System")
4003 (license license:x11)))
4004
4005 (define-public libxfixes
4006 (package
4007 (name "libxfixes")
4008 (version "5.0")
4009 (source
4010 (origin
4011 (method url-fetch)
4012 (uri (string-append
4013 "mirror://xorg/X11R7.7/src/everything/libXfixes-"
4014 version
4015 ".tar.bz2"))
4016 (sha256
4017 (base32
4018 "1qx2rmwhmca2n7rgafy0arp15k5vwhdhhh6v6mx76hlj29328yjk"))))
4019 (build-system gnu-build-system)
4020 (propagated-inputs
4021 `(("fixesproto" ,fixesproto)))
4022 (inputs
4023 `(("xproto" ,xproto)
4024 ("libx11" ,libx11)
4025 ("pkg-config" ,pkg-config)))
4026 (home-page "http://www.x.org/wiki/")
4027 (synopsis "xorg implementation of the X Window System")
4028 (description "X.org provides an implementation of the X Window System")
4029 (license license:x11)))
4030
4031
4032 (define-public libxfont
4033 (package
4034 (name "libxfont")
4035 (version "1.4.5")
4036 (source
4037 (origin
4038 (method url-fetch)
4039 (uri (string-append
4040 "mirror://xorg/X11R7.7/src/everything/libXfont-"
4041 version
4042 ".tar.bz2"))
4043 (sha256
4044 (base32
4045 "0w3irg00k6b6mziddnacln9q2rkf5848b04nvjqwv5bb1fw6zydv"))))
4046 (build-system gnu-build-system)
4047 (propagated-inputs
4048 `(("fontsproto" ,fontsproto)
4049 ("freetype" ,freetype)
4050 ("libfontenc" ,libfontenc)
4051 ("xproto" ,xproto)))
4052 (inputs
4053 `(("zlib" ,zlib)
4054 ("xtrans" ,xtrans)
4055 ("pkg-config" ,pkg-config)))
4056 (home-page "http://www.x.org/wiki/")
4057 (synopsis "xorg implementation of the X Window System")
4058 (description "X.org provides an implementation of the X Window System")
4059 (license license:x11)))
4060
4061
4062 (define-public libxi
4063 (package
4064 (name "libxi")
4065 (version "1.6.1")
4066 (source
4067 (origin
4068 (method url-fetch)
4069 (uri (string-append
4070 "mirror://xorg/X11R7.7/src/everything/libXi-"
4071 version
4072 ".tar.bz2"))
4073 (sha256
4074 (base32
4075 "029ihw4jq8mng8rx7a3jdvq64jm1zdkqidca93zmxv4jf9yn5qzj"))))
4076 (build-system gnu-build-system)
4077 (propagated-inputs
4078 `(("inputproto" ,inputproto)
4079 ("libx11" ,libx11)
4080 ("libxext" ,libxext)))
4081 (inputs
4082 `(("xproto" ,xproto)
4083 ("pkg-config" ,pkg-config)))
4084 (home-page "http://www.x.org/wiki/")
4085 (synopsis "xorg implementation of the X Window System")
4086 (description "X.org provides an implementation of the X Window System")
4087 (license license:x11)))
4088
4089
4090 (define-public libxrandr
4091 (package
4092 (name "libxrandr")
4093 (version "1.3.2")
4094 (source
4095 (origin
4096 (method url-fetch)
4097 (uri (string-append
4098 "mirror://xorg/X11R7.7/src/everything/libXrandr-"
4099 version
4100 ".tar.bz2"))
4101 (sha256
4102 (base32
4103 "10cvv78ws8jznma4s45dzqz0ldcxk30qgsqrc4wxfcsjmcba5b3y"))))
4104 (build-system gnu-build-system)
4105 (propagated-inputs
4106 `(("libxext" ,libxext)
4107 ("randrproto" ,randrproto)))
4108 (inputs
4109 `(("libxrender" ,libxrender)
4110 ("xproto" ,xproto)
4111 ("libx11" ,libx11)
4112 ("pkg-config" ,pkg-config)))
4113 (home-page "http://www.x.org/wiki/")
4114 (synopsis "xorg implementation of the X Window System")
4115 (description "X.org provides an implementation of the X Window System")
4116 (license license:x11)))
4117
4118
4119 (define-public libxvmc
4120 (package
4121 (name "libxvmc")
4122 (version "1.0.7")
4123 (source
4124 (origin
4125 (method url-fetch)
4126 (uri (string-append
4127 "mirror://xorg/X11R7.7/src/everything/libXvMC-"
4128 version
4129 ".tar.bz2"))
4130 (sha256
4131 (base32
4132 "18yf6ysc01pqkbk9704914ghalq1sl2hfdjmwggxm8qqhpy8bw18"))))
4133 (build-system gnu-build-system)
4134 (propagated-inputs
4135 `(("libxv" ,libxv)))
4136 (inputs
4137 `(("xproto" ,xproto)
4138 ("libxext" ,libxext)
4139 ("libx11" ,libx11)
4140 ("pkg-config" ,pkg-config)))
4141 (home-page "http://www.x.org/wiki/")
4142 (synopsis "xorg implementation of the X Window System")
4143 (description "X.org provides an implementation of the X Window System")
4144 (license license:x11)))
4145
4146
4147 (define-public libxxf86vm
4148 (package
4149 (name "libxxf86vm")
4150 (version "1.1.2")
4151 (source
4152 (origin
4153 (method url-fetch)
4154 (uri (string-append
4155 "mirror://xorg/X11R7.7/src/everything/libXxf86vm-"
4156 version
4157 ".tar.bz2"))
4158 (sha256
4159 (base32
4160 "117w92xz39rcqcahspi48nc04cc9110x1dycpf3vbcb6p0pifr55"))))
4161 (build-system gnu-build-system)
4162 (propagated-inputs
4163 `(("libxext" ,libxext)
4164 ("xf86vidmodeproto" ,xf86vidmodeproto)))
4165 (inputs
4166 `(("libx11" ,libx11)
4167 ("pkg-config" ,pkg-config)))
4168 (home-page "http://www.x.org/wiki/")
4169 (synopsis "xorg implementation of the X Window System")
4170 (description "X.org provides an implementation of the X Window System")
4171 (license license:x11)))
4172
4173
4174 ;; package outside the x.org system proper of height 3
4175
4176 (define-public mesa
4177 (package
4178 (name "mesa")
4179 ;; In newer versions (9.0.5, 9.1 and 9.2 tested), "make" results in an
4180 ;; infinite configure loop, see
4181 ;; https://bugs.freedesktop.org/show_bug.cgi?id=58812
4182 (version "8.0.5")
4183 (source
4184 (origin
4185 (method url-fetch)
4186 (uri (string-append
4187 "ftp://ftp.freedesktop.org/pub/mesa/older-versions/8.x/"
4188 version
4189 "/MesaLib-" version
4190 ".tar.bz2"))
4191 (sha256
4192 (base32
4193 "0pjs8x51c0i6mawgd4w03lxpyx5fnx7rc8plr8jfsscf9yiqs6si"))))
4194 (build-system gnu-build-system)
4195 (propagated-inputs
4196 `(("glproto" ,glproto)
4197 ("libdrm" ,libdrm-2.4.33)
4198 ("libxdamage" ,libxdamage)
4199 ("libxxf86vm" ,libxxf86vm)))
4200 (inputs
4201 `(("bison" ,bison)
4202 ("dri2proto" ,dri2proto)
4203 ("expat" ,expat)
4204 ("flex" ,flex)
4205 ("libx11" ,libx11)
4206 ("libxfixes" ,libxfixes)
4207 ("libxml2" ,libxml2)
4208 ("makedepend" ,makedepend)
4209 ("pkg-config" ,pkg-config)
4210 ("python" ,python-2))) ; incompatible with Python 3 (print syntax)
4211 (arguments
4212 `(#:configure-flags
4213 `("--with-gallium-drivers=r600,svga,swrast") ; drop r300 from the default list as it requires llvm
4214 #:phases
4215 (alist-cons-after
4216 'unpack 'remove-symlink
4217 (lambda* (#:key #:allow-other-keys)
4218 ;; remove dangling symlink to /usr/include/wine/windows
4219 (delete-file "src/gallium/state_trackers/d3d1x/w32api"))
4220 %standard-phases)))
4221 (home-page "http://mesa3d.org/")
4222 (synopsis "Mesa, an OpenGL implementation")
4223 (description "Mesa is a free implementation of the OpenGL specification -
4224 a system for rendering interactive 3D graphics. A variety of device drivers
4225 allows Mesa to be used in many different environments ranging from software
4226 emulation to complete hardware acceleration for modern GPUs.")
4227 (license license:x11)))
4228
4229
4230
4231 ;; packages of height 3 in the propagated-inputs tree
4232
4233 (define-public libxcb
4234 (package
4235 (name "libxcb")
4236 (version "1.8.1")
4237 (source
4238 (origin
4239 (method url-fetch)
4240 (uri (string-append
4241 "http://xcb.freedesktop.org/dist/libxcb-"
4242 version
4243 ".tar.bz2"))
4244 (sha256
4245 (base32
4246 "03gspxcdl8r7jwbwg7fyp4cc6zic9z91amp4g5z0wwahx48nix6j"))))
4247 (build-system gnu-build-system)
4248 (propagated-inputs
4249 `(("libpthread-stubs" ,libpthread-stubs)
4250 ("libxau" ,libxau)
4251 ("libxdmcp" ,libxdmcp)))
4252 (inputs
4253 `(("xcb-proto" ,xcb-proto)
4254 ("libxslt" ,libxslt)
4255 ("pkg-config" ,pkg-config)
4256 ("python" ,python-wrapper)))
4257 (arguments
4258 `(#:configure-flags '("--enable-xkb")))
4259 (home-page "http://www.x.org/wiki/")
4260 (synopsis "xorg implementation of the X Window System")
4261 (description "X.org provides an implementation of the X Window System")
4262 (license license:x11)))
4263
4264
4265 (define-public xorg-server
4266 (package
4267 (name "xorg-server")
4268 (version "1.12.2")
4269 (source
4270 (origin
4271 (method url-fetch)
4272 (uri (string-append
4273 "mirror://xorg/X11R7.7/src/everything/xorg-server-"
4274 version
4275 ".tar.bz2"))
4276 (sha256
4277 (base32
4278 "1xf57hcq6r17zxyfnx9r1wd0ir1bw13ff8bsiszwrw9jyhi9x7ya"))))
4279 (build-system gnu-build-system)
4280 (propagated-inputs
4281 `(("dri2proto" ,dri2proto)
4282 ("fontsproto" ,fontsproto)
4283 ("inputproto" ,inputproto)
4284 ("kbproto" ,kbproto)
4285 ("libpciaccess" ,libpciaccess)
4286 ("pixman" ,pixman)
4287 ("randrproto" ,randrproto)
4288 ("renderproto" ,renderproto)
4289 ("videoproto" ,videoproto)
4290 ("xextproto" ,xextproto)
4291 ("xineramaproto" ,xineramaproto)
4292 ("xproto" ,xproto)))
4293 (inputs
4294 `(("bigreqsproto" ,bigreqsproto)
4295 ("compositeproto" ,compositeproto)
4296 ("damageproto" ,damageproto)
4297 ("dbus" ,dbus)
4298 ("dmxproto" ,dmxproto)
4299 ("libdmx" ,libdmx)
4300 ("libgcrypt" ,libgcrypt)
4301 ("libxau" ,libxau)
4302 ("libxaw" ,libxaw)
4303 ("libxdmcp" ,libxdmcp)
4304 ("libxfixes" ,libxfixes)
4305 ("libxfont" ,libxfont)
4306 ("libxkbfile" ,libxkbfile)
4307 ("libxrender" ,libxrender)
4308 ("libxres" ,libxres)
4309 ("libxt" ,libxt)
4310 ("libxv" ,libxv)
4311 ("mesa" ,mesa)
4312 ("pkg-config" ,pkg-config)
4313 ("python" ,python-wrapper)
4314 ("recordproto" ,recordproto)
4315 ("resourceproto" ,resourceproto)
4316 ("scrnsaverproto" ,scrnsaverproto)
4317 ("xcmiscproto" ,xcmiscproto)
4318 ("xf86bigfontproto" ,xf86bigfontproto)
4319 ("xf86dgaproto" ,xf86dgaproto)
4320 ("xf86driproto" ,xf86driproto)
4321 ("xf86vidmodeproto" ,xf86vidmodeproto)
4322 ("xkbcomp" ,xkbcomp)
4323 ("xkeyboard-config" ,xkeyboard-config)
4324 ("xtrans" ,xtrans)
4325 ("zlib" ,zlib)))
4326 (arguments
4327 `(#:configure-flags
4328 (list (string-append "--with-xkb-path="
4329 (assoc-ref %build-inputs "xkeyboard-config")
4330 "/share/X11/xkb")
4331 (string-append "--with-xkb-output="
4332 "/tmp") ; FIXME: This is a bit doubtful; where should
4333 ; the compiled keyboard maps go?
4334 (string-append "--with-xkb-bin-directory="
4335 (assoc-ref %build-inputs "xkbcomp")
4336 "/bin"))
4337 #:phases
4338 (alist-replace
4339 'configure
4340 (lambda* (#:key outputs #:allow-other-keys #:rest args)
4341 (let ((configure (assoc-ref %standard-phases 'configure)))
4342 (substitute* (find-files "." "\\.c$")
4343 (("/bin/sh") (which "sh")))
4344 (apply configure args)))
4345 %standard-phases)))
4346 (home-page "http://www.x.org/wiki/")
4347 (synopsis "xorg implementation of the X Window System")
4348 (description "X.org provides an implementation of the X Window System")
4349 (license license:x11)))
4350
4351
4352
4353 ;; packages of height 4 in the propagated-inputs tree
4354
4355 (define-public libx11
4356 (package
4357 (name "libx11")
4358 (version "1.5.0")
4359 (source
4360 (origin
4361 (method url-fetch)
4362 (uri (string-append
4363 "mirror://xorg/X11R7.7/src/everything/libX11-"
4364 version
4365 ".tar.bz2"))
4366 (sha256
4367 (base32
4368 "11jdpl15bxwpwv0knpkh990s8jvlybng3dx477pkrz1bx7byz0n3"))))
4369 (build-system gnu-build-system)
4370 (propagated-inputs
4371 `(("kbproto" ,kbproto)
4372 ("libxcb" ,libxcb)))
4373 (inputs
4374 `(("inputproto" ,inputproto)
4375 ("pkg-config" ,pkg-config)
4376 ("xextproto" ,xextproto)
4377 ("xtrans" ,xtrans)))
4378 (home-page "http://www.x.org/wiki/")
4379 (synopsis "xorg implementation of the X Window System")
4380 (description "X.org provides an implementation of the X Window System")
4381 (license license:x11)))
4382
4383
4384 ;; packages of height 5 in the propagated-inputs tree
4385
4386 (define-public libxcursor
4387 (package
4388 (name "libxcursor")
4389 (version "1.1.13")
4390 (source
4391 (origin
4392 (method url-fetch)
4393 (uri (string-append
4394 "mirror://xorg/X11R7.7/src/everything/libXcursor-"
4395 version
4396 ".tar.bz2"))
4397 (sha256
4398 (base32
4399 "13xd1dyb06gwdwb0bxb22fkgdlmis6wrljm2xk6fhz0v9bg2g27p"))))
4400 (build-system gnu-build-system)
4401 (propagated-inputs
4402 `(("libx11" ,libx11)
4403 ("libxrender" ,libxrender)
4404 ("libxfixes" ,libxfixes)
4405 ("xproto" ,xproto)))
4406 (inputs
4407 `(("pkg-config" ,pkg-config)))
4408 (home-page "http://www.x.org/wiki/")
4409 (synopsis "xorg implementation of the X Window System")
4410 (description "X.org provides an implementation of the X Window System")
4411 (license license:x11)))
4412
4413
4414 (define-public libxt
4415 (package
4416 (name "libxt")
4417 (version "1.1.3")
4418 (source
4419 (origin
4420 (method url-fetch)
4421 (uri (string-append
4422 "mirror://xorg/X11R7.7/src/everything/libXt-"
4423 version
4424 ".tar.bz2"))
4425 (sha256
4426 (base32
4427 "1g85gwnhs7lg5f01gfi1cpb916xc3spm1fjlv2f4xz2zzk1r7dcd"))))
4428 (build-system gnu-build-system)
4429 (propagated-inputs
4430 `(("libx11" ,libx11)
4431 ("libice" ,libice)
4432 ("libsm" ,libsm)))
4433 (inputs
4434 `(("libx11" ,libx11)
4435 ("pkg-config" ,pkg-config)))
4436 (home-page "http://www.x.org/wiki/")
4437 (synopsis "xorg implementation of the X Window System")
4438 (description "X.org provides an implementation of the X Window System")
4439 (license license:x11)))
4440
4441
4442 (define-public libxaw
4443 (package
4444 (name "libxaw")
4445 (version "1.0.11")
4446 (source
4447 (origin
4448 (method url-fetch)
4449 (uri (string-append
4450 "mirror://xorg/X11R7.7/src/everything/libXaw-"
4451 version
4452 ".tar.bz2"))
4453 (sha256
4454 (base32
4455 "14ll7ndf5njc30hz2w197qvwp7fqj7y14wq4p1cyxlbipfn79a47"))))
4456 (build-system gnu-build-system)
4457 (propagated-inputs
4458 `(("libxext" ,libxext)
4459 ("libxmu" ,libxmu)
4460 ("libxpm" ,libxpm)
4461 ("libxt" ,libxt)))
4462 (inputs
4463 `(("xproto" ,xproto)
4464 ("pkg-config" ,pkg-config)))
4465 (home-page "http://www.x.org/wiki/")
4466 (synopsis "xorg implementation of the X Window System")
4467 (description "X.org provides an implementation of the X Window System")
4468 (license license:x11)))
4469
4470
4471 (define-public xcb-util
4472 (package
4473 (name "xcb-util")
4474 (version "0.3.9")
4475 (source (origin
4476 (method url-fetch)
4477 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4478 version ".tar.bz2"))
4479 (sha256
4480 (base32
4481 "1i0qbhqkcdlbbsj7ifkyjsffl61whj24d3zlg5pxf3xj1af2a4f6"))))
4482 (build-system gnu-build-system)
4483 (propagated-inputs
4484 `(("libxcb" ,libxcb)))
4485 (inputs
4486 `(("pkg-config" ,pkg-config)))
4487 (home-page "http://cgit.freedesktop.org/xcb/util/")
4488 (synopsis "Core XCB utility functions")
4489 (description "The XCB util module provides a number of libraries which
4490 sit on top of libxcb, the core X protocol library, and some of the
4491 extension libraries. These experimental libraries provide convenience
4492 functions and interfaces which make the raw X protocol more usable. Some of
4493 the libraries also provide client-side code which is not strictly part of
4494 the X protocol but which has traditionally been provided by Xlib.
4495
4496 The XCB util module provides the following libraries:
4497 aux: Convenient access to connection setup and some core requests.
4498 atom: Standard core X atom constants and atom caching.
4499 event: Some utilities that have little to do with events any more.")
4500 (license license:x11)))
4501
4502
4503 (define-public xcb-util-image
4504 (package
4505 (name "xcb-util-image")
4506 (version "0.3.9")
4507 (source (origin
4508 (method url-fetch)
4509 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4510 version ".tar.bz2"))
4511 (sha256
4512 (base32
4513 "1pr1l1nkg197gyl9d0fpwmn72jqpxjfgn9y13q4gawg1m873qnnk"))))
4514 (build-system gnu-build-system)
4515 (propagated-inputs
4516 `(("libxcb" ,libxcb)))
4517 (inputs
4518 `(("pkg-config" ,pkg-config)
4519 ("xcb-util" ,xcb-util)))
4520 (home-page "http://cgit.freedesktop.org/xcb/util-image/")
4521 (synopsis "XCB port of Xlib's XImage and XShmImage")
4522 (description "The XCB util module provides a number of libraries which
4523 sit on top of libxcb, the core X protocol library, and some of the
4524 extension libraries. These experimental libraries provide convenience
4525 functions and interfaces which make the raw X protocol more usable. Some of
4526 the libraries also provide client-side code which is not strictly part of
4527 the X protocol but which has traditionally been provided by Xlib.
4528
4529 The XCB util-image module provides the following library:
4530 image: Port of Xlib's XImage and XShmImage functions.")
4531 (license license:x11)))
4532
4533
4534 (define-public xcb-util-keysyms
4535 (package
4536 (name "xcb-util-keysyms")
4537 (version "0.3.9")
4538 (source (origin
4539 (method url-fetch)
4540 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4541 version ".tar.bz2"))
4542 (sha256
4543 (base32
4544 "0vjwk7vrcfnlhiadv445c6skfxmdrg5v4qf81y8s2s5xagqarqbv"))))
4545 (build-system gnu-build-system)
4546 (propagated-inputs
4547 `(("libxcb" ,libxcb)))
4548 (inputs
4549 `(("pkg-config" ,pkg-config)))
4550 (home-page "http://cgit.freedesktop.org/xcb/util-keysyms/")
4551 (synopsis "Standard X constants and conversion to/from keycodes")
4552 (description "The XCB util module provides a number of libraries which
4553 sit on top of libxcb, the core X protocol library, and some of the
4554 extension libraries. These experimental libraries provide convenience
4555 functions and interfaces which make the raw X protocol more usable. Some of
4556 the libraries also provide client-side code which is not strictly part of
4557 the X protocol but which has traditionally been provided by Xlib.
4558
4559 The XCB util-keysyms module provides the following library:
4560 keysyms: Standard X key constants and conversion to/from keycodes.")
4561 (license license:x11)))
4562
4563
4564 (define-public xcb-util-renderutil
4565 (package
4566 (name "xcb-util-renderutil")
4567 (version "0.3.8")
4568 (source (origin
4569 (method url-fetch)
4570 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4571 version ".tar.bz2"))
4572 (sha256
4573 (base32
4574 "0lkl9ij9b447c0br2qc5qsynjn09c4fdz7sd6yp7pyi8az2sb2cp"))))
4575 (build-system gnu-build-system)
4576 (propagated-inputs
4577 `(("libxcb" ,libxcb)))
4578 (inputs
4579 `(("pkg-config" ,pkg-config)))
4580 (home-page "http://cgit.freedesktop.org/xcb/util-renderutil/")
4581 (synopsis "SConvenience functions for the Render extension")
4582 (description "The XCB util module provides a number of libraries which
4583 sit on top of libxcb, the core X protocol library, and some of the
4584 extension libraries. These experimental libraries provide convenience
4585 functions and interfaces which make the raw X protocol more usable. Some of
4586 the libraries also provide client-side code which is not strictly part of
4587 the X protocol but which has traditionally been provided by Xlib.
4588
4589 The XCB util-renderutil module provides the following library:
4590 renderutil: Convenience functions for the Render extension.")
4591 (license license:x11)))
4592
4593
4594 (define-public xcb-util-wm
4595 (package
4596 (name "xcb-util-wm")
4597 (version "0.3.9")
4598 (source (origin
4599 (method url-fetch)
4600 (uri (string-append "http://xcb.freedesktop.org/dist/xcb-util-wm-"
4601 version ".tar.bz2"))
4602 (sha256
4603 (base32
4604 "0c30fj33gvwzwhyz1dhsfwni0ai16bxpvxb4l6c6s7vvj7drp3q3"))))
4605 (build-system gnu-build-system)
4606 (propagated-inputs
4607 `(("libxcb" ,libxcb)))
4608 (inputs
4609 `(("m4" ,m4)
4610 ("pkg-config" ,pkg-config)))
4611 (home-page "http://cgit.freedesktop.org/xcb/util-wm/")
4612 (synopsis "Client and window-manager helpers for ICCCM and EWMH")
4613 (description "The XCB util modules provides a number of libraries which
4614 sit on top of libxcb, the core X protocol library, and some of the
4615 extension libraries. These experimental libraries provide convenience
4616 functions and interfaces which make the raw X protocol more usable. Some of
4617 the libraries also provide client-side code which is not strictly part of
4618 the X protocol but which has traditionally been provided by Xlib.
4619
4620 The XCB util-wm module provides the following libraries:
4621 ewmh: Both client and window-manager helpers for EWMH.
4622 icccm: Both client and window-manager helpers for ICCCM.")
4623 (license license:x11)))
4624
4625
4626 ;; package outside the x.org system proper of height 5
4627
4628 (define-public libxaw3d
4629 (package
4630 (name "libxaw3d")
4631 (version "1.6.2")
4632 (source
4633 (origin
4634 (method url-fetch)
4635 (uri (string-append
4636 "mirror://xorg/individual/lib/libXaw3d-"
4637 version
4638 ".tar.bz2"))
4639 (sha256
4640 (base32
4641 "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
4642 (build-system gnu-build-system)
4643 (propagated-inputs
4644 `(("libxext" ,libxext)
4645 ("libxmu" ,libxmu)
4646 ("libxt" ,libxt)))
4647 (inputs
4648 `(("libx11" ,libx11)
4649 ("pkg-config" ,pkg-config)))
4650 (home-page "http://www.x.org/wiki/")
4651 (synopsis "xorg implementation of the X Window System")
4652 (description "X.org provides an implementation of the X Window System")
4653 (license license:x11)))