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