gnu: xorg: Add xcb-util-keysyms.
[jackhill/guix/guix.git] / gnu / packages / xorg.scm
CommitLineData
9aea24b6
AE
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)
9aea24b6
AE
27 #:use-module (gnu packages flex)
28 #:use-module (gnu packages fontutils)
6eb126c5
AE
29 #:use-module ((gnu packages gettext)
30 #:renamer (symbol-prefix-proc 'gnu:))
9aea24b6 31 #:use-module (gnu packages glib)
2365338b 32 #:use-module (gnu packages gnupg)
9aea24b6
AE
33 #:use-module (gnu packages gperf)
34 #:use-module (gnu packages libpng)
35 #:use-module (gnu packages linux)
36 #:use-module (gnu packages m4)
9aea24b6
AE
37 #:use-module (gnu packages perl)
38 #:use-module (gnu packages pkg-config)
5f1d0fb0
AE
39 #:use-module (gnu packages python)
40 #:use-module (gnu packages xml))
9aea24b6 41
6eb126c5
AE
42
43
5acf2910
AE
44;; packages outside the x.org system proper
45
e45a6082
AE
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
c7f99931 62 `(("libxext" ,libxext)
e45a6082
AE
63 ("libxmu" ,libxmu)
64 ("libxt" ,libxt)
65 ("pkg-config" ,pkg-config)))
66 (home-page "http://xeyes.sourcearchive.com/")
b04ac5a1
AE
67 (synopsis "A follow the mouse X demo")
68 (description "Xeyes is a demo program for x.org. It shows eyes
69following the mouse.")
e45a6082
AE
70 (license license:x11)))
71
72
5acf2910
AE
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
95manipulation, providing features such as image compositing and trapezoid
96rasterisation.")
97 (license license:x11)))
98
99
f8d3c99b
AE
100(define-public libdrm
101 (package
102 (name "libdrm")
6c76c451 103 (version "2.4.46")
f8d3c99b
AE
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
6c76c451 113 "1wah4qmrrcv0gnx65lhrlxb6gprxch92wy8lhxv6102fml6k5krk"))))
f8d3c99b
AE
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,
122is a framework for allowing direct access to graphics hardware under the
123X Window System in a safe and efficient manner. It includes changes to the
124X server, to several client libraries, and to the kernel (DRM, Direct
125Rendering Manager). The most important use for the DRI is to create fast
126OpenGL implementations providing hardware acceleration for Mesa.
127Several 3D accelerated drivers have been written to the DRI specification,
128including drivers for chipsets produced by 3DFX, AMD (formerly ATI), Intel
129and Matrox.")
130 (license license:x11)))
131
5acf2910 132
68a3d0e8
AE
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
84419dfd
AE
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
172variants of kernel MT events to the slotted type B protocol. The events
173put into mtdev may be from any MT device, specifically type A without
174contact tracking, type A with contact tracking, or type B with contact
175tracking.")
176 (license license:x11)))
177
178
179
dcc9053a 180;; packages without propagated input
6eb126c5
AE
181;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
182;; be defined first, the split makes book-keeping easier.)
183
184
d92083ad
AE
185;; compiles only on macos
186;; (define-public applewmproto
9aea24b6
AE
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)))
5223c826
AE
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")
d385b835 210 (license license:x11)))
5f1d0fb0
AE
211
212
9aea24b6
AE
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)))
5223c826
AE
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")
d385b835 232 (license license:x11)))
5f1d0fb0
AE
233
234
9aea24b6
AE
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)
88ee93f9
AE
250 (inputs
251 `(("fixesproto" ,fixesproto)
252 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 256 (license license:x11)))
5f1d0fb0
AE
257
258
9aea24b6
AE
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)))
5223c826
AE
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")
d385b835 278 (license license:x11)))
5f1d0fb0
AE
279
280
9aea24b6
AE
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)))
5223c826
AE
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")
d385b835 300 (license license:x11)))
5f1d0fb0
AE
301
302
303(define-public dri2proto
304 (package
305 (name "dri2proto")
dd85efda 306 (version "2.6")
5f1d0fb0
AE
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
b49317ca 316 "02drlfqvjm2q7dvkkwli3fs2crb6rdb3kyd13vwx7z0rijrc10md"))))
5f1d0fb0 317 (build-system gnu-build-system)
5223c826
AE
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")
d385b835 321 (license license:x11)))
5f1d0fb0
AE
322
323
9aea24b6
AE
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)
9aea24b6 339 (inputs
6eb126c5 340 `(("mkfontscale" ,mkfontscale)
9aea24b6 341 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
6eb126c5 345 (license license:public-domain)))
5f1d0fb0
AE
346
347
6eb126c5 348(define-public font-adobe100dpi
9aea24b6 349 (package
6eb126c5 350 (name "font-adobe100dpi")
9aea24b6
AE
351 (version "1.0.3")
352 (source
353 (origin
354 (method url-fetch)
355 (uri (string-append
5f1d0fb0 356 "mirror://xorg/X11R7.7/src/everything/font-adobe-100dpi-"
9aea24b6
AE
357 version
358 ".tar.bz2"))
359 (sha256
360 (base32
b49317ca 361 "0m60f5bd0caambrk8ksknb5dks7wzsg7g7xaf0j21jxmx8rq9h5j"))))
9aea24b6 362 (build-system gnu-build-system)
bc3073c8
AE
363 (inputs
364 `(("bdftopcf" ,bdftopcf)
365 ("font-util", font-util)
366 ("mkfontdir" ,mkfontdir)
367 ("pkg-config" ,pkg-config)))
755693a4
AE
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"))))
5223c826
AE
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")
d385b835 376 (license license:x11)))
5f1d0fb0
AE
377
378
6eb126c5 379(define-public font-adobe75dpi
9aea24b6 380 (package
6eb126c5 381 (name "font-adobe75dpi")
9aea24b6
AE
382 (version "1.0.3")
383 (source
384 (origin
385 (method url-fetch)
386 (uri (string-append
5f1d0fb0 387 "mirror://xorg/X11R7.7/src/everything/font-adobe-75dpi-"
9aea24b6
AE
388 version
389 ".tar.bz2"))
390 (sha256
391 (base32
b49317ca 392 "02advcv9lyxpvrjv8bjh1b797lzg6jvhipclz49z8r8y98g4l0n6"))))
9aea24b6 393 (build-system gnu-build-system)
bc3073c8
AE
394 (inputs
395 `(("bdftopcf" ,bdftopcf)
396 ("font-util", font-util)
397 ("mkfontdir" ,mkfontdir)
398 ("pkg-config" ,pkg-config)))
755693a4
AE
399 (arguments
400 `(#:configure-flags (list
401 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
5223c826
AE
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")
d385b835
AE
405 (license license:x11)))
406
407
124b7f1e 408;; non-free license
6eb126c5 409;; (define-public font-adobe-utopia100dpi
6eb126c5 410;; (define-public font-adobe-utopia75dpi
d385b835 411;; (define-public font-adobe-utopia-type1
5f1d0fb0
AE
412
413
414(define-public font-alias
9aea24b6 415 (package
5f1d0fb0 416 (name "font-alias")
9aea24b6
AE
417 (version "1.0.3")
418 (source
419 (origin
420 (method url-fetch)
421 (uri (string-append
5f1d0fb0 422 "mirror://xorg/X11R7.7/src/everything/font-alias-"
9aea24b6
AE
423 version
424 ".tar.bz2"))
425 (sha256
426 (base32
5f1d0fb0 427 "16ic8wfwwr3jicaml7b5a0sk6plcgc1kg84w02881yhwmqm3nicb"))))
9aea24b6 428 (build-system gnu-build-system)
5f1d0fb0 429 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 433 (license license:x11)))
5f1d0fb0
AE
434
435
436(define-public font-arabic-misc
9aea24b6 437 (package
5f1d0fb0 438 (name "font-arabic-misc")
9aea24b6
AE
439 (version "1.0.3")
440 (source
441 (origin
442 (method url-fetch)
443 (uri (string-append
5f1d0fb0 444 "mirror://xorg/X11R7.7/src/everything/font-arabic-misc-"
9aea24b6
AE
445 version
446 ".tar.bz2"))
447 (sha256
448 (base32
5f1d0fb0 449 "1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"))))
9aea24b6
AE
450 (build-system gnu-build-system)
451 (inputs
452 `(("mkfontdir" ,mkfontdir)
453 ("bdftopcf" ,bdftopcf)
454 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835
AE
458 (license license:x11)))
459
460
124b7f1e 461;; non-free license
6eb126c5 462;; (define-public font-bh100dpi
6eb126c5 463;; (define-public font-bh75dpi
6eb126c5 464;; (define-public font-bh-lucidatypewriter100dpi
6eb126c5 465;; (define-public font-bh-lucidatypewriter75dpi
45f0ae82 466;; (define-public font-bh-ttf
d385b835 467;; (define-public font-bh-type1
6eb126c5 468;; (define-public font-bitstream100dpi
6eb126c5 469;; (define-public font-bitstream75dpi
5f1d0fb0
AE
470
471
5f1d0fb0 472(define-public font-cronyx-cyrillic
9aea24b6 473 (package
5f1d0fb0
AE
474 (name "font-cronyx-cyrillic")
475 (version "1.0.3")
9aea24b6
AE
476 (source
477 (origin
478 (method url-fetch)
479 (uri (string-append
5f1d0fb0 480 "mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
9aea24b6
AE
481 version
482 ".tar.bz2"))
483 (sha256
484 (base32
5f1d0fb0 485 "0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"))))
9aea24b6
AE
486 (build-system gnu-build-system)
487 (inputs
5f1d0fb0 488 `(("mkfontdir" ,mkfontdir)
9aea24b6
AE
489 ("bdftopcf" ,bdftopcf)
490 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835
AE
494 (license license:x11)))
495
496
124b7f1e 497;; no license
d385b835 498;; (define-public font-cursor-misc
124b7f1e
AE
499
500;; non-free license
d385b835 501;; (define-public font-daewoo-misc
5f1d0fb0
AE
502
503
504(define-public font-dec-misc
9aea24b6 505 (package
5f1d0fb0
AE
506 (name "font-dec-misc")
507 (version "1.0.3")
9aea24b6
AE
508 (source
509 (origin
510 (method url-fetch)
511 (uri (string-append
5f1d0fb0 512 "mirror://xorg/X11R7.7/src/everything/font-dec-misc-"
9aea24b6
AE
513 version
514 ".tar.bz2"))
515 (sha256
516 (base32
5f1d0fb0 517 "0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"))))
9aea24b6 518 (build-system gnu-build-system)
5f1d0fb0
AE
519 (inputs
520 `(("mkfontdir" ,mkfontdir)
521 ("bdftopcf" ,bdftopcf)
522 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 526 (license license:x11)))
5f1d0fb0
AE
527
528
124b7f1e 529;; non-free license
d385b835 530;; (define-public font-ibm-type1
5f1d0fb0
AE
531
532(define-public font-isas-misc
9aea24b6 533 (package
5f1d0fb0
AE
534 (name "font-isas-misc")
535 (version "1.0.3")
9aea24b6
AE
536 (source
537 (origin
538 (method url-fetch)
539 (uri (string-append
5f1d0fb0 540 "mirror://xorg/X11R7.7/src/everything/font-isas-misc-"
9aea24b6
AE
541 version
542 ".tar.bz2"))
543 (sha256
544 (base32
5f1d0fb0 545 "0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"))))
9aea24b6 546 (build-system gnu-build-system)
5f1d0fb0
AE
547 (inputs
548 `(("mkfontdir" ,mkfontdir)
549 ("bdftopcf" ,bdftopcf)
550 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 554 (license license:x11)))
5f1d0fb0
AE
555
556
124b7f1e 557;; non-free license
d385b835 558;; (define-public font-jis-misc
5f1d0fb0
AE
559
560
561(define-public font-micro-misc
9aea24b6 562 (package
5f1d0fb0
AE
563 (name "font-micro-misc")
564 (version "1.0.3")
9aea24b6
AE
565 (source
566 (origin
567 (method url-fetch)
568 (uri (string-append
5f1d0fb0 569 "mirror://xorg/X11R7.7/src/everything/font-micro-misc-"
9aea24b6
AE
570 version
571 ".tar.bz2"))
572 (sha256
573 (base32
5f1d0fb0 574 "1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"))))
9aea24b6 575 (build-system gnu-build-system)
5f1d0fb0
AE
576 (inputs
577 `(("mkfontdir" ,mkfontdir)
578 ("bdftopcf" ,bdftopcf)
579 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 583 (license license:public-domain)))
5f1d0fb0
AE
584
585
586(define-public font-misc-cyrillic
9aea24b6 587 (package
5f1d0fb0
AE
588 (name "font-misc-cyrillic")
589 (version "1.0.3")
9aea24b6
AE
590 (source
591 (origin
592 (method url-fetch)
593 (uri (string-append
5f1d0fb0 594 "mirror://xorg/X11R7.7/src/everything/font-misc-cyrillic-"
9aea24b6
AE
595 version
596 ".tar.bz2"))
597 (sha256
598 (base32
5f1d0fb0 599 "0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"))))
9aea24b6 600 (build-system gnu-build-system)
5f1d0fb0
AE
601 (inputs
602 `(("mkfontdir" ,mkfontdir)
603 ("bdftopcf" ,bdftopcf)
604 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 608 (license license:x11)))
5f1d0fb0
AE
609
610
611(define-public font-misc-ethiopic
9aea24b6 612 (package
5f1d0fb0
AE
613 (name "font-misc-ethiopic")
614 (version "1.0.3")
9aea24b6
AE
615 (source
616 (origin
617 (method url-fetch)
618 (uri (string-append
5f1d0fb0 619 "mirror://xorg/X11R7.7/src/everything/font-misc-ethiopic-"
9aea24b6
AE
620 version
621 ".tar.bz2"))
622 (sha256
623 (base32
5f1d0fb0 624 "19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"))))
9aea24b6
AE
625 (build-system gnu-build-system)
626 (inputs
c7f99931 627 `(("mkfontdir" ,mkfontdir)
9aea24b6 628 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 632 (license license:x11)))
5f1d0fb0
AE
633
634
124b7f1e 635;; non-free license
d385b835 636;; (define-public font-misc-meltho
5f1d0fb0
AE
637
638
639(define-public font-misc-misc
9aea24b6 640 (package
5f1d0fb0
AE
641 (name "font-misc-misc")
642 (version "1.1.2")
9aea24b6
AE
643 (source
644 (origin
645 (method url-fetch)
646 (uri (string-append
5f1d0fb0 647 "mirror://xorg/X11R7.7/src/everything/font-misc-misc-"
9aea24b6
AE
648 version
649 ".tar.bz2"))
650 (sha256
651 (base32
5f1d0fb0 652 "150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"))))
9aea24b6 653 (build-system gnu-build-system)
5f1d0fb0 654 (inputs
c7f99931 655 `(("mkfontdir" ,mkfontdir)
5f1d0fb0
AE
656 ("font-util" ,font-util)
657 ("bdftopcf" ,bdftopcf)
658 ("pkg-config" ,pkg-config)))
755693a4
AE
659 (arguments
660 `(#:configure-flags (list
661 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
5223c826
AE
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")
d385b835 665 (license license:public-domain)))
5f1d0fb0
AE
666
667
668(define-public font-mutt-misc
9aea24b6 669 (package
5f1d0fb0
AE
670 (name "font-mutt-misc")
671 (version "1.0.3")
9aea24b6
AE
672 (source
673 (origin
674 (method url-fetch)
675 (uri (string-append
5f1d0fb0 676 "mirror://xorg/X11R7.7/src/everything/font-mutt-misc-"
9aea24b6
AE
677 version
678 ".tar.bz2"))
679 (sha256
680 (base32
5f1d0fb0 681 "13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"))))
9aea24b6 682 (build-system gnu-build-system)
5f1d0fb0
AE
683 (inputs
684 `(("mkfontdir" ,mkfontdir)
685 ("bdftopcf" ,bdftopcf)
686 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 690 (license license:x11)))
5f1d0fb0
AE
691
692
693(define-public font-schumacher-misc
9aea24b6 694 (package
5f1d0fb0
AE
695 (name "font-schumacher-misc")
696 (version "1.1.2")
9aea24b6
AE
697 (source
698 (origin
699 (method url-fetch)
700 (uri (string-append
5f1d0fb0 701 "mirror://xorg/X11R7.7/src/everything/font-schumacher-misc-"
9aea24b6
AE
702 version
703 ".tar.bz2"))
704 (sha256
705 (base32
5f1d0fb0 706 "0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"))))
9aea24b6
AE
707 (build-system gnu-build-system)
708 (inputs
c7f99931 709 `(("mkfontdir" ,mkfontdir)
5f1d0fb0
AE
710 ("font-util" ,font-util)
711 ("bdftopcf" ,bdftopcf)
9aea24b6 712 ("pkg-config" ,pkg-config)))
755693a4
AE
713 (arguments
714 `(#:configure-flags (list
715 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
5223c826
AE
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")
d385b835 719 (license license:x11)))
5f1d0fb0
AE
720
721
722(define-public font-screen-cyrillic
9aea24b6 723 (package
5f1d0fb0 724 (name "font-screen-cyrillic")
9aea24b6
AE
725 (version "1.0.4")
726 (source
727 (origin
728 (method url-fetch)
729 (uri (string-append
5f1d0fb0 730 "mirror://xorg/X11R7.7/src/everything/font-screen-cyrillic-"
9aea24b6
AE
731 version
732 ".tar.bz2"))
733 (sha256
734 (base32
5f1d0fb0 735 "0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"))))
9aea24b6
AE
736 (build-system gnu-build-system)
737 (inputs
5f1d0fb0
AE
738 `(("mkfontdir" ,mkfontdir)
739 ("bdftopcf" ,bdftopcf)
9aea24b6 740 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 744 (license license:x11)))
5f1d0fb0
AE
745
746
747(define-public font-sony-misc
9aea24b6 748 (package
5f1d0fb0
AE
749 (name "font-sony-misc")
750 (version "1.0.3")
9aea24b6
AE
751 (source
752 (origin
753 (method url-fetch)
754 (uri (string-append
5f1d0fb0 755 "mirror://xorg/X11R7.7/src/everything/font-sony-misc-"
9aea24b6
AE
756 version
757 ".tar.bz2"))
758 (sha256
759 (base32
5f1d0fb0 760 "1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"))))
9aea24b6
AE
761 (build-system gnu-build-system)
762 (inputs
5f1d0fb0
AE
763 `(("mkfontdir" ,mkfontdir)
764 ("bdftopcf" ,bdftopcf)
9aea24b6 765 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 769 (license license:x11)))
5f1d0fb0
AE
770
771
772(define-public font-sun-misc
9aea24b6 773 (package
5f1d0fb0
AE
774 (name "font-sun-misc")
775 (version "1.0.3")
9aea24b6
AE
776 (source
777 (origin
778 (method url-fetch)
779 (uri (string-append
5f1d0fb0 780 "mirror://xorg/X11R7.7/src/everything/font-sun-misc-"
9aea24b6
AE
781 version
782 ".tar.bz2"))
783 (sha256
784 (base32
5f1d0fb0 785 "1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"))))
9aea24b6
AE
786 (build-system gnu-build-system)
787 (inputs
5f1d0fb0
AE
788 `(("mkfontdir" ,mkfontdir)
789 ("bdftopcf" ,bdftopcf)
9aea24b6 790 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 794 (license license:x11)))
5f1d0fb0
AE
795
796
797(define-public font-util
9aea24b6 798 (package
5f1d0fb0
AE
799 (name "font-util")
800 (version "1.3.0")
9aea24b6
AE
801 (source
802 (origin
803 (method url-fetch)
804 (uri (string-append
5f1d0fb0 805 "mirror://xorg/X11R7.7/src/everything/font-util-"
9aea24b6
AE
806 version
807 ".tar.bz2"))
808 (sha256
809 (base32
5f1d0fb0 810 "15cijajwhjzpy3ydc817zz8x5z4gbkyv3fps687jbq544mbfbafz"))))
9aea24b6 811 (build-system gnu-build-system)
5f1d0fb0 812 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 816 (license license:x11)))
5f1d0fb0
AE
817
818
819(define-public font-winitzki-cyrillic
9aea24b6 820 (package
5f1d0fb0
AE
821 (name "font-winitzki-cyrillic")
822 (version "1.0.3")
9aea24b6
AE
823 (source
824 (origin
825 (method url-fetch)
826 (uri (string-append
5f1d0fb0 827 "mirror://xorg/X11R7.7/src/everything/font-winitzki-cyrillic-"
9aea24b6
AE
828 version
829 ".tar.bz2"))
830 (sha256
831 (base32
5f1d0fb0 832 "181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"))))
9aea24b6
AE
833 (build-system gnu-build-system)
834 (inputs
5f1d0fb0
AE
835 `(("mkfontdir" ,mkfontdir)
836 ("bdftopcf" ,bdftopcf)
9aea24b6 837 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 841 (license license:public-domain)))
5f1d0fb0
AE
842
843
844(define-public font-xfree86-type1
9aea24b6 845 (package
5f1d0fb0
AE
846 (name "font-xfree86-type1")
847 (version "1.0.4")
9aea24b6
AE
848 (source
849 (origin
850 (method url-fetch)
851 (uri (string-append
5f1d0fb0 852 "mirror://xorg/X11R7.7/src/everything/font-xfree86-type1-"
9aea24b6
AE
853 version
854 ".tar.bz2"))
855 (sha256
856 (base32
b49317ca 857 "0jp3zc0qfdaqfkgzrb44vi9vi0a8ygb35wp082yz7rvvxhmg9sya"))))
9aea24b6 858 (build-system gnu-build-system)
6eb126c5
AE
859 (inputs
860 `(("mkfontdir" ,mkfontdir)
861 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 865 (license license:x11)))
5f1d0fb0
AE
866
867
868(define-public fontsproto
9aea24b6 869 (package
5f1d0fb0
AE
870 (name "fontsproto")
871 (version "2.1.2")
9aea24b6
AE
872 (source
873 (origin
874 (method url-fetch)
875 (uri (string-append
5f1d0fb0 876 "mirror://xorg/X11R7.7/src/everything/fontsproto-"
9aea24b6
AE
877 version
878 ".tar.bz2"))
879 (sha256
880 (base32
5f1d0fb0 881 "1ab8mbqxdwvdz4k5x4xb9c4n5w7i1xw276cbpk4z7a1nlpjrg746"))))
9aea24b6 882 (build-system gnu-build-system)
5f1d0fb0 883 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 887 (license license:x11)))
5f1d0fb0
AE
888
889
890(define-public glproto
9aea24b6 891 (package
5f1d0fb0 892 (name "glproto")
b49317ca 893 (version "1.4.15")
9aea24b6
AE
894 (source
895 (origin
896 (method url-fetch)
897 (uri (string-append
5f1d0fb0 898 "mirror://xorg/X11R7.7/src/everything/glproto-"
9aea24b6
AE
899 version
900 ".tar.bz2"))
901 (sha256
902 (base32
b49317ca 903 "0wf1vq9g4pyzahb23ywx554pm5bpax49lz188fk6m5p8wbmmc0wr"))))
9aea24b6 904 (build-system gnu-build-system)
5f1d0fb0 905 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 909 (license license:x11)))
5f1d0fb0
AE
910
911
912(define-public iceauth
9aea24b6 913 (package
5f1d0fb0
AE
914 (name "iceauth")
915 (version "1.0.5")
9aea24b6
AE
916 (source
917 (origin
918 (method url-fetch)
919 (uri (string-append
5f1d0fb0 920 "mirror://xorg/X11R7.7/src/everything/iceauth-"
9aea24b6
AE
921 version
922 ".tar.bz2"))
923 (sha256
924 (base32
5f1d0fb0 925 "1aq6v671s2x5rc6zn0rgxb4wddg4vq94mckw3cpwl7ccrjjvd5hl"))))
9aea24b6
AE
926 (build-system gnu-build-system)
927 (inputs
c7f99931 928 `(("libice" ,libice)
9aea24b6 929 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 933 (license license:x11)))
5f1d0fb0
AE
934
935
936(define-public inputproto
9aea24b6 937 (package
5f1d0fb0
AE
938 (name "inputproto")
939 (version "2.2")
9aea24b6
AE
940 (source
941 (origin
942 (method url-fetch)
943 (uri (string-append
5f1d0fb0 944 "mirror://xorg/X11R7.7/src/everything/inputproto-"
9aea24b6
AE
945 version
946 ".tar.bz2"))
947 (sha256
948 (base32
5f1d0fb0 949 "1c5wqamfsd8g5i8kya5pjfmcac8q5zq1l3vclh6p96f24nmicxfy"))))
9aea24b6 950 (build-system gnu-build-system)
5f1d0fb0 951 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 955 (license license:x11)))
5f1d0fb0
AE
956
957
958(define-public kbproto
9aea24b6 959 (package
5f1d0fb0
AE
960 (name "kbproto")
961 (version "1.0.6")
9aea24b6
AE
962 (source
963 (origin
964 (method url-fetch)
965 (uri (string-append
5f1d0fb0 966 "mirror://xorg/X11R7.7/src/everything/kbproto-"
9aea24b6
AE
967 version
968 ".tar.bz2"))
969 (sha256
970 (base32
5f1d0fb0 971 "0yal11hhpiisy3w8wmacsdzzzcnc3xwnswxz8k7zri40xc5aqz03"))))
9aea24b6 972 (build-system gnu-build-system)
5f1d0fb0 973 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 977 (license license:x11)))
5f1d0fb0
AE
978
979
d92083ad
AE
980;; requires applewmproto, which compiles only on macos
981;; (define-public libapplewm
d385b835
AE
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)))
5223c826
AE
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")
d385b835
AE
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)))
5223c826
AE
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")
d385b835 1033 (license license:x11)))
5f1d0fb0
AE
1034
1035
1036(define-public libfs
9aea24b6 1037 (package
5f1d0fb0
AE
1038 (name "libfs")
1039 (version "1.0.4")
9aea24b6
AE
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (string-append
5f1d0fb0 1044 "mirror://xorg/X11R7.7/src/everything/libFS-"
9aea24b6
AE
1045 version
1046 ".tar.bz2"))
1047 (sha256
1048 (base32
5f1d0fb0 1049 "05c3bqgn5m7j4kx8wvy0p36faq6f9jv5yq12m6033m4lflg7cwvh"))))
9aea24b6
AE
1050 (build-system gnu-build-system)
1051 (inputs
5f1d0fb0
AE
1052 `(("xtrans" ,xtrans)
1053 ("xproto" ,xproto)
1054 ("fontsproto" ,fontsproto)
9aea24b6 1055 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1059 (license license:x11)))
5f1d0fb0
AE
1060
1061
d385b835
AE
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)))
5223c826
AE
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")
d385b835
AE
1082 (license license:x11)))
1083
1084
0820a58b
AE
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
5ee12e21 1093 "http://xcb.freedesktop.org/dist/libpthread-stubs-"
0820a58b
AE
1094 version
1095 ".tar.bz2"))
1096 (sha256
1097 (base32
1098 "16bjv3in19l84hbri41iayvvg4ls9gv1ma0x0qlbmwy67i7dbdim"))))
1099 (build-system gnu-build-system)
1100 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
0820a58b 1104 (license license:x11)))
5f1d0fb0
AE
1105
1106
1107(define-public libsm
9aea24b6 1108 (package
5f1d0fb0
AE
1109 (name "libsm")
1110 (version "1.2.1")
9aea24b6
AE
1111 (source
1112 (origin
1113 (method url-fetch)
1114 (uri (string-append
5f1d0fb0 1115 "mirror://xorg/X11R7.7/src/everything/libSM-"
9aea24b6
AE
1116 version
1117 ".tar.bz2"))
1118 (sha256
1119 (base32
5f1d0fb0 1120 "07bzi6xwlhq36f60qfspjbz0qjj7zcgayi1vp4ihgx34kib1vhck"))))
9aea24b6
AE
1121 (build-system gnu-build-system)
1122 (inputs
5f1d0fb0 1123 `(("xtrans" ,xtrans)
5f1d0fb0
AE
1124 ("util-linux" ,util-linux)
1125 ("libice" ,libice)
9aea24b6 1126 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1130 (license license:x11)))
5f1d0fb0
AE
1131
1132
1133(define-public libwindowswm
9aea24b6 1134 (package
5f1d0fb0
AE
1135 (name "libwindowswm")
1136 (version "1.0.1")
9aea24b6
AE
1137 (source
1138 (origin
1139 (method url-fetch)
1140 (uri (string-append
5f1d0fb0 1141 "mirror://xorg/X11R7.7/src/everything/libWindowsWM-"
9aea24b6
AE
1142 version
1143 ".tar.bz2"))
1144 (sha256
1145 (base32
5f1d0fb0 1146 "1p0flwb67xawyv6yhri9w17m1i4lji5qnd0gq8v1vsfb8zw7rw15"))))
9aea24b6
AE
1147 (build-system gnu-build-system)
1148 (inputs
5f1d0fb0 1149 `(("xextproto" ,xextproto)
9aea24b6
AE
1150 ("libxext" ,libxext)
1151 ("libx11" ,libx11)
5f1d0fb0 1152 ("windowswmproto" ,windowswmproto)
9aea24b6 1153 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1157 (license license:x11)))
5f1d0fb0
AE
1158
1159
6eb126c5 1160(define-public libxcomposite
9aea24b6 1161 (package
6eb126c5
AE
1162 (name "libxcomposite")
1163 (version "0.4.3")
9aea24b6
AE
1164 (source
1165 (origin
1166 (method url-fetch)
1167 (uri (string-append
6eb126c5 1168 "mirror://xorg/X11R7.7/src/everything/libXcomposite-"
9aea24b6
AE
1169 version
1170 ".tar.bz2"))
1171 (sha256
1172 (base32
6eb126c5 1173 "1b8sniijb85v4my6v30ma9yqnwl4hkclci9l1hqxnipfyhl4sa9j"))))
9aea24b6 1174 (build-system gnu-build-system)
6eb126c5
AE
1175 (inputs
1176 `(("xproto" ,xproto)
1177 ("libxfixes" ,libxfixes)
1178 ("libx11" ,libx11)
1179 ("compositeproto" ,compositeproto)
1180 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1184 (license license:x11)))
5f1d0fb0
AE
1185
1186
6eb126c5 1187(define-public libxdmcp
9aea24b6 1188 (package
6eb126c5
AE
1189 (name "libxdmcp")
1190 (version "1.1.1")
9aea24b6
AE
1191 (source
1192 (origin
1193 (method url-fetch)
1194 (uri (string-append
6eb126c5 1195 "mirror://xorg/X11R7.7/src/everything/libXdmcp-"
9aea24b6
AE
1196 version
1197 ".tar.bz2"))
1198 (sha256
1199 (base32
6eb126c5 1200 "13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls"))))
9aea24b6
AE
1201 (build-system gnu-build-system)
1202 (inputs
6eb126c5 1203 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835
AE
1207 (license license:x11)))
1208
1209
6eb126c5 1210(define-public libxft
0820a58b 1211 (package
6eb126c5
AE
1212 (name "libxft")
1213 (version "2.3.1")
0820a58b
AE
1214 (source
1215 (origin
1216 (method url-fetch)
1217 (uri (string-append
6eb126c5 1218 "mirror://xorg/X11R7.7/src/everything/libXft-"
0820a58b
AE
1219 version
1220 ".tar.bz2"))
1221 (sha256
1222 (base32
6eb126c5 1223 "1gdv6559cdz1lfw73x7wsvax1fkvphmayrymprljhyyb5nwk5kkz"))))
0820a58b
AE
1224 (build-system gnu-build-system)
1225 (inputs
c7f99931 1226 `(("libx11" ,libx11)
6eb126c5
AE
1227 ("xproto" ,xproto)
1228 ("libxrender" ,libxrender)
1229 ("xproto" ,xproto)
1230 ("libx11" ,libx11)
1231 ("freetype" ,freetype)
1232 ("fontconfig" ,fontconfig)
1233 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
0820a58b 1237 (license license:x11)))
5f1d0fb0
AE
1238
1239
6eb126c5 1240(define-public libxkbfile
5f1d0fb0 1241 (package
6eb126c5
AE
1242 (name "libxkbfile")
1243 (version "1.0.8")
5f1d0fb0
AE
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (string-append
6eb126c5 1248 "mirror://xorg/X11R7.7/src/everything/libxkbfile-"
5f1d0fb0
AE
1249 version
1250 ".tar.bz2"))
1251 (sha256
1252 (base32
6eb126c5 1253 "0flg5arw6n3njagmsi4i4l0zl5bfx866a1h9ydc3bi1pqlclxaca"))))
9aea24b6
AE
1254 (build-system gnu-build-system)
1255 (inputs
6eb126c5 1256 `(("libx11" ,libx11)
9aea24b6 1257 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1261 (license license:x11)))
5f1d0fb0
AE
1262
1263
6eb126c5 1264(define-public libxmu
9aea24b6 1265 (package
6eb126c5
AE
1266 (name "libxmu")
1267 (version "1.1.1")
9aea24b6
AE
1268 (source
1269 (origin
1270 (method url-fetch)
1271 (uri (string-append
6eb126c5 1272 "mirror://xorg/X11R7.7/src/everything/libXmu-"
9aea24b6
AE
1273 version
1274 ".tar.bz2"))
1275 (sha256
1276 (base32
6eb126c5 1277 "1pbym8rrznxqd60zwf7w4xpf27sa72bky2knginqcfnca32q343h"))))
9aea24b6
AE
1278 (build-system gnu-build-system)
1279 (inputs
6eb126c5
AE
1280 `(("libxt" ,libxt)
1281 ("xproto" ,xproto)
6eb126c5 1282 ("libxext" ,libxext)
9aea24b6 1283 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1287 (license license:x11)))
5f1d0fb0
AE
1288
1289
6eb126c5 1290(define-public libxpm
9aea24b6 1291 (package
6eb126c5
AE
1292 (name "libxpm")
1293 (version "3.5.10")
9aea24b6
AE
1294 (source
1295 (origin
1296 (method url-fetch)
1297 (uri (string-append
6eb126c5 1298 "mirror://xorg/X11R7.7/src/everything/libXpm-"
9aea24b6
AE
1299 version
1300 ".tar.bz2"))
1301 (sha256
1302 (base32
6eb126c5 1303 "0dd737ch4q9gr151wff1m3q2j7wf3pip4y81601xdrsh8wipxnx6"))))
9aea24b6
AE
1304 (build-system gnu-build-system)
1305 (inputs
6eb126c5
AE
1306 `(("gettext" ,gnu:gettext)
1307 ("libxt" ,libxt)
1308 ("xproto" ,xproto)
6eb126c5 1309 ("libxext" ,libxext)
6eb126c5 1310 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1314 (license license:x11)))
5f1d0fb0
AE
1315
1316
6eb126c5 1317(define-public libxres
5f1d0fb0 1318 (package
6eb126c5
AE
1319 (name "libxres")
1320 (version "1.0.6")
5f1d0fb0
AE
1321 (source
1322 (origin
1323 (method url-fetch)
1324 (uri (string-append
6eb126c5 1325 "mirror://xorg/X11R7.7/src/everything/libXres-"
5f1d0fb0
AE
1326 version
1327 ".tar.bz2"))
1328 (sha256
1329 (base32
6eb126c5 1330 "1478pm70gdi6l70r4jpkyyg2am9wv6xh53z9ibwq5cg84p4n31pz"))))
5f1d0fb0
AE
1331 (build-system gnu-build-system)
1332 (inputs
6eb126c5 1333 `(("xproto" ,xproto)
6eb126c5 1334 ("libxext" ,libxext)
9aea24b6 1335 ("libx11" ,libx11)
6eb126c5 1336 ("resourceproto" ,resourceproto)
9aea24b6 1337 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1341 (license license:x11)))
5f1d0fb0
AE
1342
1343
6eb126c5 1344(define-public libxscrnsaver
9aea24b6 1345 (package
6eb126c5
AE
1346 (name "libxscrnsaver")
1347 (version "1.2.2")
9aea24b6
AE
1348 (source
1349 (origin
1350 (method url-fetch)
1351 (uri (string-append
6eb126c5 1352 "mirror://xorg/X11R7.7/src/everything/libXScrnSaver-"
9aea24b6
AE
1353 version
1354 ".tar.bz2"))
1355 (sha256
1356 (base32
6eb126c5 1357 "07ff4r20nkkrj7h08f9fwamds9b3imj8jz5iz6y38zqw6jkyzwcg"))))
9aea24b6
AE
1358 (build-system gnu-build-system)
1359 (inputs
c7f99931 1360 `(("libxext" ,libxext)
9aea24b6 1361 ("libx11" ,libx11)
6eb126c5 1362 ("scrnsaverproto" ,scrnsaverproto)
5f1d0fb0 1363 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1367 (license license:x11)))
5f1d0fb0
AE
1368
1369
6eb126c5 1370(define-public libxxf86dga
9aea24b6 1371 (package
6eb126c5
AE
1372 (name "libxxf86dga")
1373 (version "1.1.3")
9aea24b6
AE
1374 (source
1375 (origin
1376 (method url-fetch)
1377 (uri (string-append
6eb126c5 1378 "mirror://xorg/X11R7.7/src/everything/libXxf86dga-"
9aea24b6
AE
1379 version
1380 ".tar.bz2"))
1381 (sha256
1382 (base32
6eb126c5 1383 "15291ddhyr54sribwbg8hxx2psgzm5gh0pgkw5yrf3zgvdsa67sm"))))
9aea24b6
AE
1384 (build-system gnu-build-system)
1385 (inputs
6eb126c5 1386 `(("libx11" ,libx11)
9aea24b6 1387 ("libxext" ,libxext)
6eb126c5
AE
1388 ("pkg-config" ,pkg-config)
1389 ("xf86dgaproto" ,xf86dgaproto)))
5223c826
AE
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")
d385b835 1393 (license license:x11)))
5f1d0fb0
AE
1394
1395
6eb126c5 1396(define-public luit
5f1d0fb0 1397 (package
6eb126c5
AE
1398 (name "luit")
1399 (version "1.1.1")
5f1d0fb0
AE
1400 (source
1401 (origin
1402 (method url-fetch)
1403 (uri (string-append
6eb126c5 1404 "mirror://xorg/X11R7.7/src/everything/luit-"
5f1d0fb0
AE
1405 version
1406 ".tar.bz2"))
1407 (sha256
1408 (base32
6eb126c5 1409 "0dn694mk56x6hdk6y9ylx4f128h5jcin278gnw2gb807rf3ygc1h"))))
5f1d0fb0
AE
1410 (build-system gnu-build-system)
1411 (inputs
6eb126c5 1412 `(("libfontenc" ,libfontenc)
5f1d0fb0 1413 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1417 (license license:x11)))
5f1d0fb0
AE
1418
1419
6eb126c5 1420(define-public makedepend
5f1d0fb0 1421 (package
6eb126c5
AE
1422 (name "makedepend")
1423 (version "1.0.4")
5f1d0fb0
AE
1424 (source
1425 (origin
1426 (method url-fetch)
1427 (uri (string-append
6eb126c5 1428 "mirror://xorg/X11R7.7/src/everything/makedepend-"
5f1d0fb0
AE
1429 version
1430 ".tar.bz2"))
1431 (sha256
1432 (base32
6eb126c5 1433 "1zpp2b9dfvlnfj2i1mzdyn785rpl7vih5lap7kcpiv80xspbhmmb"))))
5f1d0fb0
AE
1434 (build-system gnu-build-system)
1435 (inputs
6eb126c5 1436 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1440 (license license:x11)))
5f1d0fb0
AE
1441
1442
6eb126c5 1443(define-public mkfontscale
5f1d0fb0 1444 (package
6eb126c5
AE
1445 (name "mkfontscale")
1446 (version "1.1.0")
5f1d0fb0
AE
1447 (source
1448 (origin
1449 (method url-fetch)
1450 (uri (string-append
6eb126c5 1451 "mirror://xorg/X11R7.7/src/everything/mkfontscale-"
5f1d0fb0
AE
1452 version
1453 ".tar.bz2"))
1454 (sha256
1455 (base32
6eb126c5 1456 "1539h3ws66vcql6sf2831bcs0r4d9b05lcgpswkw33lvcxighmff"))))
5f1d0fb0
AE
1457 (build-system gnu-build-system)
1458 (inputs
6eb126c5 1459 `(("zlib" ,zlib)
5f1d0fb0 1460 ("xproto" ,xproto)
6eb126c5
AE
1461 ("freetype" ,freetype)
1462 ("libfontenc" ,libfontenc)
5f1d0fb0 1463 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1467 (license license:x11)))
5f1d0fb0
AE
1468
1469
bd8c5d5b
AE
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
6eb126c5 1493(define-public randrproto
5f1d0fb0 1494 (package
6eb126c5 1495 (name "randrproto")
dd85efda 1496 (version "1.3.2")
5f1d0fb0
AE
1497 (source
1498 (origin
1499 (method url-fetch)
1500 (uri (string-append
6eb126c5 1501 "mirror://xorg/X11R7.7/src/everything/randrproto-"
5f1d0fb0
AE
1502 version
1503 ".tar.bz2"))
1504 (sha256
1505 (base32
6eb126c5 1506 "0wfwcq85wbm0g5r0snc7prgki1wi3kxrxhcxinyr54n45ihh03fr"))))
5f1d0fb0 1507 (build-system gnu-build-system)
6eb126c5 1508 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1512 (license license:x11)))
5f1d0fb0
AE
1513
1514
6eb126c5 1515(define-public recordproto
5f1d0fb0 1516 (package
6eb126c5
AE
1517 (name "recordproto")
1518 (version "1.14.2")
5f1d0fb0
AE
1519 (source
1520 (origin
1521 (method url-fetch)
1522 (uri (string-append
6eb126c5 1523 "mirror://xorg/X11R7.7/src/everything/recordproto-"
5f1d0fb0
AE
1524 version
1525 ".tar.bz2"))
1526 (sha256
1527 (base32
6eb126c5 1528 "0w3kgr1zabwf79bpc28dcnj0fpni6r53rpi82ngjbalj5s6m8xx7"))))
5f1d0fb0 1529 (build-system gnu-build-system)
6eb126c5 1530 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1534 (license license:x11)))
5f1d0fb0
AE
1535
1536
6eb126c5 1537(define-public renderproto
5f1d0fb0 1538 (package
6eb126c5
AE
1539 (name "renderproto")
1540 (version "0.11.1")
5f1d0fb0
AE
1541 (source
1542 (origin
1543 (method url-fetch)
1544 (uri (string-append
6eb126c5 1545 "mirror://xorg/X11R7.7/src/everything/renderproto-"
5f1d0fb0
AE
1546 version
1547 ".tar.bz2"))
1548 (sha256
1549 (base32
6eb126c5 1550 "0dr5xw6s0qmqg0q5pdkb4jkdhaja0vbfqla79qh5j1xjj9dmlwq6"))))
5f1d0fb0 1551 (build-system gnu-build-system)
6eb126c5 1552 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835
AE
1556 (license license:x11)))
1557
1558
6eb126c5 1559(define-public resourceproto
d385b835 1560 (package
6eb126c5
AE
1561 (name "resourceproto")
1562 (version "1.2.0")
d385b835
AE
1563 (source
1564 (origin
1565 (method url-fetch)
1566 (uri (string-append
6eb126c5 1567 "mirror://xorg/X11R7.7/src/everything/resourceproto-"
d385b835
AE
1568 version
1569 ".tar.bz2"))
1570 (sha256
1571 (base32
6eb126c5 1572 "0638iyfiiyjw1hg3139pai0j6m65gkskrvd9684zgc6ydcx00riw"))))
d385b835 1573 (build-system gnu-build-system)
6eb126c5 1574 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1578 (license license:x11)))
5f1d0fb0
AE
1579
1580
6eb126c5 1581(define-public scrnsaverproto
5f1d0fb0 1582 (package
6eb126c5
AE
1583 (name "scrnsaverproto")
1584 (version "1.2.2")
5f1d0fb0
AE
1585 (source
1586 (origin
1587 (method url-fetch)
1588 (uri (string-append
6eb126c5 1589 "mirror://xorg/X11R7.7/src/everything/scrnsaverproto-"
5f1d0fb0
AE
1590 version
1591 ".tar.bz2"))
1592 (sha256
1593 (base32
6eb126c5 1594 "0rfdbfwd35d761xkfifcscx56q0n56043ixlmv70r4v4l66hmdwb"))))
5f1d0fb0 1595 (build-system gnu-build-system)
6eb126c5 1596 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1600 (license license:x11)))
5f1d0fb0
AE
1601
1602
6eb126c5 1603(define-public sessreg
5f1d0fb0 1604 (package
6eb126c5
AE
1605 (name "sessreg")
1606 (version "1.0.7")
5f1d0fb0
AE
1607 (source
1608 (origin
1609 (method url-fetch)
1610 (uri (string-append
6eb126c5 1611 "mirror://xorg/X11R7.7/src/everything/sessreg-"
5f1d0fb0
AE
1612 version
1613 ".tar.bz2"))
1614 (sha256
1615 (base32
6eb126c5 1616 "0lifgjxdvc6lwyjk90slddnr12fsv88ldy6qhklr5av409cfwd47"))))
5f1d0fb0
AE
1617 (build-system gnu-build-system)
1618 (inputs
6eb126c5 1619 `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1623 (license license:x11)))
5f1d0fb0
AE
1624
1625
6eb126c5 1626(define-public setxkbmap
5f1d0fb0 1627 (package
6eb126c5
AE
1628 (name "setxkbmap")
1629 (version "1.3.0")
5f1d0fb0
AE
1630 (source
1631 (origin
1632 (method url-fetch)
1633 (uri (string-append
6eb126c5 1634 "mirror://xorg/X11R7.7/src/everything/setxkbmap-"
5f1d0fb0
AE
1635 version
1636 ".tar.bz2"))
1637 (sha256
1638 (base32
6eb126c5 1639 "1inygpvlgc6vr5h9laxw9lnvafnccl3fy0g5n9ll28iq3yfmqc1x"))))
5f1d0fb0
AE
1640 (build-system gnu-build-system)
1641 (inputs
6eb126c5 1642 `(("libxkbfile" ,libxkbfile)
5f1d0fb0 1643 ("libx11" ,libx11)
5f1d0fb0 1644 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1648 (license license:x11)))
5f1d0fb0
AE
1649
1650
6eb126c5 1651(define-public smproxy
5f1d0fb0 1652 (package
6eb126c5
AE
1653 (name "smproxy")
1654 (version "1.0.5")
5f1d0fb0
AE
1655 (source
1656 (origin
1657 (method url-fetch)
1658 (uri (string-append
6eb126c5 1659 "mirror://xorg/X11R7.7/src/everything/smproxy-"
5f1d0fb0
AE
1660 version
1661 ".tar.bz2"))
1662 (sha256
1663 (base32
6eb126c5 1664 "02fn5wa1gs2jap6sr9j9yk6zsvz82j8l61pf74iyqwa99q4wnb67"))))
5f1d0fb0
AE
1665 (build-system gnu-build-system)
1666 (inputs
6eb126c5
AE
1667 `(("libxt" ,libxt)
1668 ("libxmu" ,libxmu)
5f1d0fb0 1669 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1673 (license license:x11)))
5f1d0fb0
AE
1674
1675
6eb126c5 1676(define-public util-macros
5f1d0fb0 1677 (package
6eb126c5
AE
1678 (name "util-macros")
1679 (version "1.17")
5f1d0fb0
AE
1680 (source
1681 (origin
1682 (method url-fetch)
1683 (uri (string-append
6eb126c5 1684 "mirror://xorg/X11R7.7/src/everything/util-macros-"
5f1d0fb0
AE
1685 version
1686 ".tar.bz2"))
1687 (sha256
1688 (base32
6eb126c5 1689 "1vbmrcn5n3wp4pyw0n4c3pyvzlc4yf7jzgngavfdq5zwfbgfsybx"))))
5f1d0fb0 1690 (build-system gnu-build-system)
6eb126c5 1691 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1695 (license license:x11)))
5f1d0fb0
AE
1696
1697
6eb126c5 1698(define-public videoproto
5f1d0fb0 1699 (package
6eb126c5
AE
1700 (name "videoproto")
1701 (version "2.3.1")
5f1d0fb0
AE
1702 (source
1703 (origin
1704 (method url-fetch)
1705 (uri (string-append
6eb126c5 1706 "mirror://xorg/X11R7.7/src/everything/videoproto-"
5f1d0fb0
AE
1707 version
1708 ".tar.bz2"))
1709 (sha256
1710 (base32
6eb126c5 1711 "0nk3i6gwkqq1w8zwn7bxz344pi1dwcjrmf6hr330h7hxjcj6viry"))))
5f1d0fb0 1712 (build-system gnu-build-system)
6eb126c5 1713 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1717 (license license:x11)))
5f1d0fb0
AE
1718
1719
6eb126c5 1720(define-public windowswmproto
5f1d0fb0 1721 (package
6eb126c5
AE
1722 (name "windowswmproto")
1723 (version "1.0.4")
5f1d0fb0
AE
1724 (source
1725 (origin
1726 (method url-fetch)
1727 (uri (string-append
6eb126c5 1728 "mirror://xorg/X11R7.7/src/everything/windowswmproto-"
5f1d0fb0
AE
1729 version
1730 ".tar.bz2"))
1731 (sha256
1732 (base32
6eb126c5 1733 "0syjxgy4m8l94qrm03nvn5k6bkxc8knnlld1gbllym97nvnv0ny0"))))
5f1d0fb0 1734 (build-system gnu-build-system)
6eb126c5 1735 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1739 (license license:x11)))
5f1d0fb0
AE
1740
1741
6eb126c5 1742(define-public x11perf
5f1d0fb0 1743 (package
6eb126c5
AE
1744 (name "x11perf")
1745 (version "1.5.4")
5f1d0fb0
AE
1746 (source
1747 (origin
1748 (method url-fetch)
1749 (uri (string-append
6eb126c5 1750 "mirror://xorg/X11R7.7/src/everything/x11perf-"
5f1d0fb0
AE
1751 version
1752 ".tar.bz2"))
1753 (sha256
1754 (base32
6eb126c5 1755 "111iwpxhnxjiq44w96zf0kszg5zpgv1g3ayx18v4nhdzl9bqivi4"))))
5f1d0fb0
AE
1756 (build-system gnu-build-system)
1757 (inputs
6eb126c5
AE
1758 `(("libx11" ,libx11)
1759 ("libxft" ,libxft)
1760 ("libxmu" ,libxmu)
1761 ("libxrender" ,libxrender)
1762 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1766 (license license:x11)))
5f1d0fb0
AE
1767
1768
6eb126c5 1769(define-public xauth
5f1d0fb0 1770 (package
6eb126c5 1771 (name "xauth")
5f1d0fb0
AE
1772 (version "1.0.7")
1773 (source
1774 (origin
1775 (method url-fetch)
1776 (uri (string-append
6eb126c5 1777 "mirror://xorg/X11R7.7/src/everything/xauth-"
5f1d0fb0
AE
1778 version
1779 ".tar.bz2"))
1780 (sha256
1781 (base32
6eb126c5 1782 "1382wdfiakgckbw1xxavzh1nm34q21b1zzy96qp7ws66xc48rxw4"))))
5f1d0fb0 1783 (build-system gnu-build-system)
6eb126c5
AE
1784 (inputs
1785 `(("libxmu" ,libxmu)
1786 ("libxext" ,libxext)
1787 ("libxau" ,libxau)
1788 ("libx11" ,libx11)
1789 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1793 (license license:x11)))
5f1d0fb0
AE
1794
1795
6eb126c5 1796(define-public xbacklight
5f1d0fb0 1797 (package
6eb126c5
AE
1798 (name "xbacklight")
1799 (version "1.1.2")
5f1d0fb0
AE
1800 (source
1801 (origin
1802 (method url-fetch)
1803 (uri (string-append
6eb126c5 1804 "mirror://xorg/X11R7.7/src/everything/xbacklight-"
5f1d0fb0
AE
1805 version
1806 ".tar.bz2"))
1807 (sha256
1808 (base32
6eb126c5 1809 "02b5jfys2msla2yvg5s0knzyxg2104r25czkwd49i8g8kp804bxg"))))
5f1d0fb0
AE
1810 (build-system gnu-build-system)
1811 (inputs
6eb126c5
AE
1812 `(("libx11" ,libx11)
1813 ("libxrandr" ,libxrandr)
1814 ("libxrender" ,libxrender)
5f1d0fb0 1815 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1819 (license license:x11)))
5f1d0fb0
AE
1820
1821
6eb126c5 1822(define-public xbitmaps
5f1d0fb0 1823 (package
6eb126c5
AE
1824 (name "xbitmaps")
1825 (version "1.1.1")
5f1d0fb0
AE
1826 (source
1827 (origin
1828 (method url-fetch)
1829 (uri (string-append
6eb126c5 1830 "mirror://xorg/X11R7.7/src/everything/xbitmaps-"
5f1d0fb0
AE
1831 version
1832 ".tar.bz2"))
1833 (sha256
1834 (base32
6eb126c5 1835 "178ym90kwidia6nas4qr5n5yqh698vv8r02js0r4vg3b6lsb0w9n"))))
5f1d0fb0
AE
1836 (build-system gnu-build-system)
1837 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1841 (license license:x11)))
5f1d0fb0
AE
1842
1843
6eb126c5 1844(define-public xcb-proto
5f1d0fb0 1845 (package
6eb126c5
AE
1846 (name "xcb-proto")
1847 (version "1.7.1")
5f1d0fb0
AE
1848 (source
1849 (origin
1850 (method url-fetch)
1851 (uri (string-append
5ee12e21 1852 "http://xcb.freedesktop.org/dist/xcb-proto-"
5f1d0fb0
AE
1853 version
1854 ".tar.bz2"))
1855 (sha256
1856 (base32
6eb126c5 1857 "0ds4qg6slidrzyz6q9ckq0a19hn6blzpnvciy4brh741gn49jpdd"))))
5f1d0fb0 1858 (build-system gnu-build-system)
6eb126c5 1859 (inputs
ee3e314b 1860 `(("pkg-config" ,pkg-config) ("python" ,python-wrapper)))
5223c826
AE
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")
d385b835 1864 (license license:x11)))
5f1d0fb0
AE
1865
1866
6eb126c5 1867(define-public xcmiscproto
5f1d0fb0 1868 (package
6eb126c5
AE
1869 (name "xcmiscproto")
1870 (version "1.2.2")
5f1d0fb0
AE
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (string-append
6eb126c5 1875 "mirror://xorg/X11R7.7/src/everything/xcmiscproto-"
5f1d0fb0
AE
1876 version
1877 ".tar.bz2"))
1878 (sha256
1879 (base32
6eb126c5 1880 "1pyjv45wivnwap2wvsbrzdvjc5ql8bakkbkrvcv6q9bjjf33ccmi"))))
5f1d0fb0
AE
1881 (build-system gnu-build-system)
1882 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1886 (license license:x11)))
5f1d0fb0
AE
1887
1888
6eb126c5 1889(define-public xcmsdb
5f1d0fb0 1890 (package
6eb126c5
AE
1891 (name "xcmsdb")
1892 (version "1.0.4")
5f1d0fb0
AE
1893 (source
1894 (origin
1895 (method url-fetch)
1896 (uri (string-append
6eb126c5 1897 "mirror://xorg/X11R7.7/src/everything/xcmsdb-"
5f1d0fb0
AE
1898 version
1899 ".tar.bz2"))
1900 (sha256
1901 (base32
6eb126c5 1902 "03ms731l3kvaldq7ycbd30j6134b61i3gbll4b2gl022wyzbjq74"))))
5f1d0fb0 1903 (build-system gnu-build-system)
6eb126c5
AE
1904 (inputs
1905 `(("libx11" ,libx11)
1906 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1910 (license license:x11)))
5f1d0fb0
AE
1911
1912
6eb126c5 1913(define-public xcursor-themes
5f1d0fb0 1914 (package
6eb126c5
AE
1915 (name "xcursor-themes")
1916 (version "1.0.3")
5f1d0fb0
AE
1917 (source
1918 (origin
1919 (method url-fetch)
1920 (uri (string-append
6eb126c5 1921 "mirror://xorg/X11R7.7/src/everything/xcursor-themes-"
5f1d0fb0
AE
1922 version
1923 ".tar.bz2"))
1924 (sha256
1925 (base32
6eb126c5 1926 "1is4bak0qkkhv63mfa5l7492r475586y52yzfxyv3psppn662ilr"))))
5f1d0fb0 1927 (build-system gnu-build-system)
6eb126c5
AE
1928 (inputs
1929 `(("libxcursor" ,libxcursor)
1930 ("pkg-config" ,pkg-config)
1931 ("xcursorgen" ,xcursorgen)))
93be8dc4
AE
1932 (arguments
1933 `(#:configure-flags
1934 (list (string-append "--with-cursordir="
1935 (assoc-ref %outputs "out")
1936 "/share/icons"))))
5223c826
AE
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")
d385b835 1940 (license license:x11)))
5f1d0fb0
AE
1941
1942
6eb126c5 1943(define-public xcursorgen
5f1d0fb0 1944 (package
6eb126c5
AE
1945 (name "xcursorgen")
1946 (version "1.0.5")
5f1d0fb0
AE
1947 (source
1948 (origin
1949 (method url-fetch)
1950 (uri (string-append
6eb126c5 1951 "mirror://xorg/X11R7.7/src/everything/xcursorgen-"
5f1d0fb0
AE
1952 version
1953 ".tar.bz2"))
1954 (sha256
1955 (base32
6eb126c5 1956 "10f5wk1326mm45gvgpf4m2p0j80fcd0i4c52zikahb91zah72wdw"))))
5f1d0fb0
AE
1957 (build-system gnu-build-system)
1958 (inputs
6eb126c5 1959 `(("libxcursor" ,libxcursor)
6eb126c5
AE
1960 ("libpng" ,libpng)
1961 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1965 (license license:x11)))
5f1d0fb0
AE
1966
1967
6eb126c5 1968(define-public xdpyinfo
5f1d0fb0 1969 (package
6eb126c5 1970 (name "xdpyinfo")
5f1d0fb0
AE
1971 (version "1.3.0")
1972 (source
1973 (origin
1974 (method url-fetch)
1975 (uri (string-append
6eb126c5 1976 "mirror://xorg/X11R7.7/src/everything/xdpyinfo-"
5f1d0fb0
AE
1977 version
1978 ".tar.bz2"))
1979 (sha256
1980 (base32
6eb126c5 1981 "0gypsvpmay3lsh3b1dg29pjxv95pkrr21d4w6ys02mrbld24kvi3"))))
5f1d0fb0
AE
1982 (build-system gnu-build-system)
1983 (inputs
6eb126c5 1984 `(("inputproto" ,inputproto)
c7f99931 1985 ("libx11" ,libx11)
6eb126c5 1986 ("libxxf86vm" ,libxxf86vm)
6eb126c5
AE
1987 ("libxxf86dga" ,libxxf86dga)
1988 ("libxtst" ,libxtst)
1989 ("libxrender" ,libxrender)
1990 ("libxinerama" ,libxinerama)
1991 ("libxi" ,libxi)
6eb126c5 1992 ("libxcomposite" ,libxcomposite)
6eb126c5 1993 ("libdmx" ,libdmx)
5f1d0fb0 1994 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 1998 (license license:x11)))
5f1d0fb0
AE
1999
2000
6eb126c5 2001(define-public xdriinfo
5f1d0fb0 2002 (package
6eb126c5
AE
2003 (name "xdriinfo")
2004 (version "1.0.4")
5f1d0fb0
AE
2005 (source
2006 (origin
2007 (method url-fetch)
2008 (uri (string-append
6eb126c5 2009 "mirror://xorg/X11R7.7/src/everything/xdriinfo-"
5f1d0fb0
AE
2010 version
2011 ".tar.bz2"))
2012 (sha256
2013 (base32
6eb126c5 2014 "076bjix941znyjmh3j5jjsnhp2gv2iq53d0ks29mvvv87cyy9iim"))))
5f1d0fb0
AE
2015 (build-system gnu-build-system)
2016 (inputs
d539646a 2017 `(("mesa" ,mesa)
6eb126c5 2018 ("libx11" ,libx11)
5f1d0fb0 2019 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 2023 (license license:x11)))
5f1d0fb0
AE
2024
2025
6eb126c5 2026(define-public xev
5f1d0fb0 2027 (package
6eb126c5
AE
2028 (name "xev")
2029 (version "1.2.0")
5f1d0fb0
AE
2030 (source
2031 (origin
2032 (method url-fetch)
2033 (uri (string-append
6eb126c5 2034 "mirror://xorg/X11R7.7/src/everything/xev-"
5f1d0fb0
AE
2035 version
2036 ".tar.bz2"))
2037 (sha256
2038 (base32
6eb126c5 2039 "13xk5z7vy87rnn4574z0jfzymdivyc7pl4axim81sx0pmdysg1ip"))))
5f1d0fb0 2040 (build-system gnu-build-system)
6eb126c5
AE
2041 (inputs
2042 `(("libxrender" ,libxrender)
2043 ("libxrandr" ,libxrandr)
2044 ("xproto" ,xproto)
2045 ("libx11" ,libx11)
2046 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 2050 (license license:x11)))
5f1d0fb0
AE
2051
2052
6eb126c5 2053(define-public xextproto
5f1d0fb0 2054 (package
6eb126c5
AE
2055 (name "xextproto")
2056 (version "7.2.1")
5f1d0fb0
AE
2057 (source
2058 (origin
2059 (method url-fetch)
2060 (uri (string-append
6eb126c5 2061 "mirror://xorg/X11R7.7/src/everything/xextproto-"
5f1d0fb0
AE
2062 version
2063 ".tar.bz2"))
2064 (sha256
2065 (base32
6eb126c5 2066 "06kdanbnprxvgl56l5h0lqj4b0f1fbb1ndha33mv5wvy802v2lvw"))))
5f1d0fb0
AE
2067 (build-system gnu-build-system)
2068 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 2072 (license license:x11)))
5f1d0fb0
AE
2073
2074
6eb126c5 2075(define-public xf86-input-evdev
5f1d0fb0 2076 (package
6eb126c5
AE
2077 (name "xf86-input-evdev")
2078 (version "2.7.0")
5f1d0fb0
AE
2079 (source
2080 (origin
2081 (method url-fetch)
2082 (uri (string-append
6eb126c5 2083 "mirror://xorg/X11R7.7/src/everything/xf86-input-evdev-"
5f1d0fb0
AE
2084 version
2085 ".tar.bz2"))
2086 (sha256
2087 (base32
6eb126c5 2088 "1ivf5n821chckrgp89mpb18zi00v1hyrkc1hr82q0x6g1kpgxq9y"))))
5f1d0fb0 2089 (build-system gnu-build-system)
917748dd
AE
2090 ;; FIXME: Add required input udev once it is available.
2091 (inputs `(("pkg-config" ,pkg-config)
2092 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2096 (license license:x11)))
5f1d0fb0
AE
2097
2098
6eb126c5 2099(define-public xf86-input-joystick
5f1d0fb0 2100 (package
6eb126c5
AE
2101 (name "xf86-input-joystick")
2102 (version "1.6.1")
5f1d0fb0
AE
2103 (source
2104 (origin
2105 (method url-fetch)
2106 (uri (string-append
6eb126c5 2107 "mirror://xorg/X11R7.7/src/everything/xf86-input-joystick-"
5f1d0fb0
AE
2108 version
2109 ".tar.bz2"))
2110 (sha256
2111 (base32
6eb126c5 2112 "1xgpkdmfw4ahjlva97gs9sllzw8nlpa8mxj59g28fxhak67mvv8x"))))
5f1d0fb0 2113 (build-system gnu-build-system)
917748dd
AE
2114 (inputs `(("pkg-config" ,pkg-config)
2115 ("xorg-server" ,xorg-server)))
c9cb0825
AE
2116 (arguments
2117 `(#:configure-flags
2118 (list (string-append "--with-sdkdir="
2119 (assoc-ref %outputs "out")
2120 "/include/xorg"))))
5223c826
AE
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")
d385b835 2124 (license license:x11)))
5f1d0fb0
AE
2125
2126
6eb126c5 2127(define-public xf86-input-keyboard
5f1d0fb0 2128 (package
6eb126c5
AE
2129 (name "xf86-input-keyboard")
2130 (version "1.6.1")
5f1d0fb0
AE
2131 (source
2132 (origin
2133 (method url-fetch)
2134 (uri (string-append
6eb126c5 2135 "mirror://xorg/X11R7.7/src/everything/xf86-input-keyboard-"
5f1d0fb0
AE
2136 version
2137 ".tar.bz2"))
2138 (sha256
2139 (base32
6eb126c5 2140 "1hwc1bjw5mxv186xbrxiky0agfglwqg8fsxqdh4br1vzgxpck7ma"))))
5f1d0fb0 2141 (build-system gnu-build-system)
917748dd
AE
2142 (inputs `(("pkg-config" ,pkg-config)
2143 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2147 (license license:x11)))
5f1d0fb0
AE
2148
2149
6eb126c5 2150(define-public xf86-input-mouse
5f1d0fb0 2151 (package
6eb126c5
AE
2152 (name "xf86-input-mouse")
2153 (version "1.7.2")
5f1d0fb0
AE
2154 (source
2155 (origin
2156 (method url-fetch)
2157 (uri (string-append
6eb126c5 2158 "mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
5f1d0fb0
AE
2159 version
2160 ".tar.bz2"))
2161 (sha256
2162 (base32
6eb126c5 2163 "0fs1lwnycyv3d0m6l2wrnlgvbs8qw66d93hwlnmrsswfq5bp6ark"))))
5f1d0fb0 2164 (build-system gnu-build-system)
917748dd
AE
2165 (inputs `(("pkg-config" ,pkg-config)
2166 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2170 (license license:x11)))
5f1d0fb0
AE
2171
2172
6eb126c5 2173(define-public xf86-input-synaptics
5f1d0fb0 2174 (package
6eb126c5
AE
2175 (name "xf86-input-synaptics")
2176 (version "1.6.1")
5f1d0fb0
AE
2177 (source
2178 (origin
2179 (method url-fetch)
2180 (uri (string-append
6eb126c5 2181 "mirror://xorg/X11R7.7/src/everything/xf86-input-synaptics-"
5f1d0fb0
AE
2182 version
2183 ".tar.bz2"))
2184 (sha256
2185 (base32
6eb126c5 2186 "0g5b1s6q1dg38l8y47cwg7cs5nivwj0agmp71g273ws0lfg4bc8s"))))
5f1d0fb0 2187 (build-system gnu-build-system)
84419dfd
AE
2188 (inputs `(("libx11" ,libx11)
2189 ("libxi" ,libxi)
2190 ("mtdev" ,mtdev)
2191 ("pkg-config" ,pkg-config)
917748dd 2192 ("xorg-server" ,xorg-server)))
de9c5046
AE
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"))))
5223c826
AE
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")
d385b835 2204 (license license:x11)))
5f1d0fb0
AE
2205
2206
6eb126c5 2207(define-public xf86-input-vmmouse
0820a58b 2208 (package
6eb126c5
AE
2209 (name "xf86-input-vmmouse")
2210 (version "12.8.0")
0820a58b
AE
2211 (source
2212 (origin
2213 (method url-fetch)
2214 (uri (string-append
6eb126c5 2215 "mirror://xorg/X11R7.7/src/everything/xf86-input-vmmouse-"
0820a58b
AE
2216 version
2217 ".tar.bz2"))
2218 (sha256
2219 (base32
6eb126c5 2220 "16l65mnjb1xxav6c5q0xhhqih81bzify2c5qrhqc2j3waq5yr9m8"))))
0820a58b 2221 (build-system gnu-build-system)
917748dd
AE
2222 (inputs `(("pkg-config" ,pkg-config)
2223 ("xorg-server" ,xorg-server)))
36c0d430
AE
2224 (arguments
2225 `(#:configure-flags
2226 (list(string-append "--with-xorg-conf-dir="
2227 (assoc-ref %outputs "out")
2228 "/share/X11/xorg.conf.d"))))
5223c826
AE
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")
0820a58b 2232 (license license:x11)))
5f1d0fb0
AE
2233
2234
6eb126c5 2235(define-public xf86-input-void
5f1d0fb0 2236 (package
6eb126c5
AE
2237 (name "xf86-input-void")
2238 (version "1.4.0")
5f1d0fb0
AE
2239 (source
2240 (origin
2241 (method url-fetch)
2242 (uri (string-append
6eb126c5 2243 "mirror://xorg/X11R7.7/src/everything/xf86-input-void-"
5f1d0fb0
AE
2244 version
2245 ".tar.bz2"))
2246 (sha256
2247 (base32
6eb126c5 2248 "01bmk324fq48wydvy1qrnxbw6qz0fjd0i80g0n4cqr1c4mjmif9a"))))
5f1d0fb0 2249 (build-system gnu-build-system)
917748dd
AE
2250 (inputs `(("pkg-config" ,pkg-config)
2251 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2255 (license license:x11)))
5f1d0fb0
AE
2256
2257
6eb126c5 2258(define-public xf86-video-ark
5f1d0fb0 2259 (package
6eb126c5
AE
2260 (name "xf86-video-ark")
2261 (version "0.7.4")
5f1d0fb0
AE
2262 (source
2263 (origin
2264 (method url-fetch)
2265 (uri (string-append
6eb126c5 2266 "mirror://xorg/X11R7.7/src/everything/xf86-video-ark-"
5f1d0fb0
AE
2267 version
2268 ".tar.bz2"))
2269 (sha256
2270 (base32
6eb126c5 2271 "194zc35ivfh3vcxcilf9nbi88c2di8kbh84x535cljlpiajdnk5x"))))
5f1d0fb0 2272 (build-system gnu-build-system)
917748dd
AE
2273 (inputs `(("pkg-config" ,pkg-config)
2274 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2278 (license license:x11)))
5f1d0fb0
AE
2279
2280
6eb126c5 2281(define-public xf86-video-ast
9aea24b6 2282 (package
6eb126c5
AE
2283 (name "xf86-video-ast")
2284 (version "0.93.10")
9aea24b6
AE
2285 (source
2286 (origin
2287 (method url-fetch)
2288 (uri (string-append
6eb126c5 2289 "mirror://xorg/X11R7.7/src/everything/xf86-video-ast-"
9aea24b6
AE
2290 version
2291 ".tar.bz2"))
2292 (sha256
2293 (base32
6eb126c5 2294 "1q64z8qqa0ix3cymqiwk1s3sphd1fvvz30lvyxhgkgciygz6dm69"))))
9aea24b6 2295 (build-system gnu-build-system)
917748dd
AE
2296 (inputs `(("pkg-config" ,pkg-config)
2297 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2301 (license license:x11)))
5f1d0fb0
AE
2302
2303
6eb126c5 2304(define-public xf86-video-ati
9aea24b6 2305 (package
6eb126c5
AE
2306 (name "xf86-video-ati")
2307 (version "6.14.4")
9aea24b6
AE
2308 (source
2309 (origin
2310 (method url-fetch)
2311 (uri (string-append
6eb126c5 2312 "mirror://xorg/X11R7.7/src/everything/xf86-video-ati-"
9aea24b6
AE
2313 version
2314 ".tar.bz2"))
2315 (sha256
2316 (base32
6eb126c5 2317 "11gg6xn65vym75769hzgzpkjsyhlkrw4zw3ncngriq7vz1g47zjg"))))
9aea24b6 2318 (build-system gnu-build-system)
917748dd
AE
2319 (inputs `(("mesa" ,mesa)
2320 ("pkg-config" ,pkg-config)
2321 ("xxf86driproto" ,xf86driproto)
2322 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2326 (license license:x11)))
5f1d0fb0
AE
2327
2328
6eb126c5 2329(define-public xf86-video-cirrus
9aea24b6 2330 (package
6eb126c5
AE
2331 (name "xf86-video-cirrus")
2332 (version "1.4.0")
9aea24b6
AE
2333 (source
2334 (origin
2335 (method url-fetch)
2336 (uri (string-append
6eb126c5 2337 "mirror://xorg/X11R7.7/src/everything/xf86-video-cirrus-"
9aea24b6
AE
2338 version
2339 ".tar.bz2"))
2340 (sha256
2341 (base32
6eb126c5 2342 "0blnbspj4936wy46lp346s4b08dfcray6yicsxvv5b4699fzl1rb"))))
9aea24b6 2343 (build-system gnu-build-system)
917748dd
AE
2344 (inputs `(("pkg-config" ,pkg-config)
2345 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2349 (license license:x11)))
5f1d0fb0
AE
2350
2351
124b7f1e 2352;; non-free license
6eb126c5 2353;; (define-public xf86-video-dummy
6eb126c5
AE
2354
2355
2356(define-public xf86-video-fbdev
9aea24b6 2357 (package
6eb126c5
AE
2358 (name "xf86-video-fbdev")
2359 (version "0.4.2")
9aea24b6
AE
2360 (source
2361 (origin
2362 (method url-fetch)
2363 (uri (string-append
6eb126c5 2364 "mirror://xorg/X11R7.7/src/everything/xf86-video-fbdev-"
9aea24b6
AE
2365 version
2366 ".tar.bz2"))
2367 (sha256
2368 (base32
6eb126c5 2369 "1mc23w0bfmak5216411xh58nrs93jlxmi6l412hmqzhxnjs73clk"))))
9aea24b6 2370 (build-system gnu-build-system)
917748dd
AE
2371 (inputs `(("pkg-config" ,pkg-config)
2372 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2376 (license license:x11)))
5f1d0fb0
AE
2377
2378
7e2ec42b
AE
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)))
5f1d0fb0
AE
2401
2402
1f44111f
AE
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)))
5f1d0fb0
AE
2427
2428
6eb126c5 2429(define-public xf86-video-glint
9aea24b6 2430 (package
6eb126c5
AE
2431 (name "xf86-video-glint")
2432 (version "1.2.7")
9aea24b6
AE
2433 (source
2434 (origin
2435 (method url-fetch)
2436 (uri (string-append
6eb126c5 2437 "mirror://xorg/X11R7.7/src/everything/xf86-video-glint-"
9aea24b6
AE
2438 version
2439 ".tar.bz2"))
2440 (sha256
2441 (base32
6eb126c5 2442 "0nf36jryabpncqq4m6sfsnmzk00f7gvfmjnl8l8sfy7w6sa6iacs"))))
9aea24b6 2443 (build-system gnu-build-system)
917748dd
AE
2444 (inputs `(("pkg-config" ,pkg-config)
2445 ("xf86dgaproto" ,xf86dgaproto)
2446 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2450 (license license:x11)))
5f1d0fb0
AE
2451
2452
6eb126c5 2453(define-public xf86-video-i128
9aea24b6 2454 (package
6eb126c5
AE
2455 (name "xf86-video-i128")
2456 (version "1.3.5")
9aea24b6
AE
2457 (source
2458 (origin
2459 (method url-fetch)
2460 (uri (string-append
6eb126c5 2461 "mirror://xorg/X11R7.7/src/everything/xf86-video-i128-"
9aea24b6
AE
2462 version
2463 ".tar.bz2"))
2464 (sha256
2465 (base32
6eb126c5 2466 "1sik8ck410hb2885vy7rlc590hw5br8lr2fzxgmv55jyawgfpv9y"))))
9aea24b6 2467 (build-system gnu-build-system)
917748dd
AE
2468 (inputs `(("pkg-config" ,pkg-config)
2469 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2473 (license license:x11)))
5f1d0fb0
AE
2474
2475
6eb126c5 2476(define-public xf86-video-intel
9aea24b6 2477 (package
6eb126c5
AE
2478 (name "xf86-video-intel")
2479 (version "2.19.0")
9aea24b6
AE
2480 (source
2481 (origin
2482 (method url-fetch)
2483 (uri (string-append
6eb126c5 2484 "mirror://xorg/X11R7.7/src/everything/xf86-video-intel-"
9aea24b6
AE
2485 version
2486 ".tar.bz2"))
2487 (sha256
2488 (base32
6eb126c5 2489 "1g742szymajh88a5dw08sxcr45bmxgc4w3m6hddv9qscn5hks4rj"))))
9aea24b6 2490 (build-system gnu-build-system)
917748dd
AE
2491 (inputs `(("libdrm" ,libdrm)
2492 ("libx11" ,libx11)
2493 ("pkg-config" ,pkg-config)
2494 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2498 (license license:x11)))
5f1d0fb0
AE
2499
2500
6eb126c5 2501(define-public xf86-video-mach64
9aea24b6 2502 (package
6eb126c5
AE
2503 (name "xf86-video-mach64")
2504 (version "6.9.1")
9aea24b6
AE
2505 (source
2506 (origin
2507 (method url-fetch)
2508 (uri (string-append
6eb126c5 2509 "mirror://xorg/X11R7.7/src/everything/xf86-video-mach64-"
9aea24b6
AE
2510 version
2511 ".tar.bz2"))
2512 (sha256
2513 (base32
6eb126c5 2514 "0kl3kvpc2ny48z89313i9fi4cxzwb2pllvxcr9j5ly680ygx8slz"))))
9aea24b6 2515 (build-system gnu-build-system)
917748dd
AE
2516 (inputs `(("mesa" ,mesa)
2517 ("pkg-config" ,pkg-config)
2518 ("xf86driproto" ,xf86driproto)
2519 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2523 (license license:x11)))
5f1d0fb0
AE
2524
2525
6eb126c5 2526(define-public xf86-video-mga
9aea24b6 2527 (package
6eb126c5
AE
2528 (name "xf86-video-mga")
2529 (version "1.5.0")
9aea24b6
AE
2530 (source
2531 (origin
2532 (method url-fetch)
2533 (uri (string-append
6eb126c5 2534 "mirror://xorg/X11R7.7/src/everything/xf86-video-mga-"
9aea24b6
AE
2535 version
2536 ".tar.bz2"))
2537 (sha256
2538 (base32
6eb126c5 2539 "03l3wz5kz0hmxmzqqbkgn7pf9d956jlag04rb701a0fr1mw3v66a"))))
9aea24b6 2540 (build-system gnu-build-system)
917748dd
AE
2541 (inputs `(("mesa" ,mesa)
2542 ("pkg-config" ,pkg-config)
2543 ("xf86driproto" ,xf86driproto)
2544 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2548 (license license:x11)))
5f1d0fb0
AE
2549
2550
6eb126c5 2551(define-public xf86-video-neomagic
9aea24b6 2552 (package
6eb126c5
AE
2553 (name "xf86-video-neomagic")
2554 (version "1.2.6")
9aea24b6
AE
2555 (source
2556 (origin
2557 (method url-fetch)
2558 (uri (string-append
6eb126c5 2559 "mirror://xorg/X11R7.7/src/everything/xf86-video-neomagic-"
9aea24b6
AE
2560 version
2561 ".tar.bz2"))
2562 (sha256
2563 (base32
6eb126c5 2564 "124qci48xrk0w2jy91n7vqs7s6q397zyiqqszhmkx6ld7six57mi"))))
9aea24b6 2565 (build-system gnu-build-system)
917748dd
AE
2566 (inputs `(("pkg-config" ,pkg-config)
2567 ("xf86dgaproto" ,xf86dgaproto)
2568 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2572 (license license:x11)))
5f1d0fb0
AE
2573
2574
6eb126c5 2575(define-public xf86-video-newport
9aea24b6 2576 (package
6eb126c5
AE
2577 (name "xf86-video-newport")
2578 (version "0.2.4")
9aea24b6
AE
2579 (source
2580 (origin
2581 (method url-fetch)
2582 (uri (string-append
6eb126c5 2583 "mirror://xorg/X11R7.7/src/everything/xf86-video-newport-"
9aea24b6
AE
2584 version
2585 ".tar.bz2"))
2586 (sha256
2587 (base32
6eb126c5 2588 "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
9aea24b6 2589 (build-system gnu-build-system)
917748dd
AE
2590 (inputs `(("pkg-config" ,pkg-config)
2591 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2595 (license license:x11)))
5f1d0fb0
AE
2596
2597
6eb126c5 2598(define-public xf86-video-nv
9aea24b6 2599 (package
6eb126c5
AE
2600 (name "xf86-video-nv")
2601 (version "2.1.18")
9aea24b6
AE
2602 (source
2603 (origin
2604 (method url-fetch)
2605 (uri (string-append
6eb126c5 2606 "mirror://xorg/X11R7.7/src/everything/xf86-video-nv-"
9aea24b6
AE
2607 version
2608 ".tar.bz2"))
2609 (sha256
2610 (base32
6eb126c5 2611 "05glbi9jc7j9nm4sf4qvl3z87s48ibm3i283lqz85kbphg62dxvc"))))
9aea24b6 2612 (build-system gnu-build-system)
917748dd
AE
2613 (inputs `(("pkg-config" ,pkg-config)
2614 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2618 (license license:x11)))
5f1d0fb0
AE
2619
2620
6eb126c5 2621(define-public xf86-video-openchrome
9aea24b6 2622 (package
6eb126c5
AE
2623 (name "xf86-video-openchrome")
2624 (version "0.2.906")
9aea24b6
AE
2625 (source
2626 (origin
2627 (method url-fetch)
2628 (uri (string-append
6eb126c5 2629 "mirror://xorg/X11R7.7/src/everything/xf86-video-openchrome-"
9aea24b6
AE
2630 version
2631 ".tar.bz2"))
2632 (sha256
2633 (base32
6eb126c5 2634 "0hgzn1r7ig94xbr9dvq0bp1nxqlfp2ki8823jca3f22a2kf8wmg7"))))
9aea24b6 2635 (build-system gnu-build-system)
917748dd
AE
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)))
5223c826
AE
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")
d385b835 2646 (license license:x11)))
5f1d0fb0
AE
2647
2648
6eb126c5 2649(define-public xf86-video-r128
9aea24b6 2650 (package
6eb126c5
AE
2651 (name "xf86-video-r128")
2652 (version "6.8.2")
9aea24b6
AE
2653 (source
2654 (origin
2655 (method url-fetch)
2656 (uri (string-append
6eb126c5 2657 "mirror://xorg/X11R7.7/src/everything/xf86-video-r128-"
9aea24b6
AE
2658 version
2659 ".tar.bz2"))
2660 (sha256
2661 (base32
6eb126c5 2662 "1c84x40k9qz9dnf5qs6nnjcgz7px6mpc3rbk8mj62zhp7mf16hbv"))))
9aea24b6 2663 (build-system gnu-build-system)
917748dd
AE
2664 (inputs `(("mesa" ,mesa)
2665 ("pkg-config" ,pkg-config)
2666 ("xf86driproto" ,xf86driproto)
2667 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2671 (license license:x11)))
5f1d0fb0
AE
2672
2673
6eb126c5 2674(define-public xf86-video-savage
9aea24b6 2675 (package
6eb126c5
AE
2676 (name "xf86-video-savage")
2677 (version "2.3.4")
9aea24b6
AE
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (string-append
6eb126c5 2682 "mirror://xorg/X11R7.7/src/everything/xf86-video-savage-"
9aea24b6
AE
2683 version
2684 ".tar.bz2"))
2685 (sha256
2686 (base32
6eb126c5 2687 "0jdy4wv3k3ylx3lajjcbsg37z2hf6366a1jvv16sv1ln6dk6lris"))))
9aea24b6 2688 (build-system gnu-build-system)
917748dd
AE
2689 (inputs `(("mesa" ,mesa)
2690 ("pkg-config" ,pkg-config)
2691 ("xf86driproto" ,xf86driproto)
2692 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2696 (license license:x11)))
5f1d0fb0
AE
2697
2698
6eb126c5 2699(define-public xf86-video-siliconmotion
9aea24b6 2700 (package
6eb126c5
AE
2701 (name "xf86-video-siliconmotion")
2702 (version "1.7.6")
9aea24b6
AE
2703 (source
2704 (origin
2705 (method url-fetch)
2706 (uri (string-append
6eb126c5 2707 "mirror://xorg/X11R7.7/src/everything/xf86-video-siliconmotion-"
9aea24b6
AE
2708 version
2709 ".tar.bz2"))
2710 (sha256
2711 (base32
6eb126c5 2712 "01sdl6ky1vmvmfgx2d44i35rqafi0z07xdy40cvindcr2k91p7x5"))))
9aea24b6 2713 (build-system gnu-build-system)
917748dd
AE
2714 (inputs `(("pkg-config" ,pkg-config)
2715 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2719 (license license:x11)))
5f1d0fb0
AE
2720
2721
6eb126c5 2722(define-public xf86-video-sis
9aea24b6 2723 (package
6eb126c5
AE
2724 (name "xf86-video-sis")
2725 (version "0.10.4")
9aea24b6
AE
2726 (source
2727 (origin
2728 (method url-fetch)
2729 (uri (string-append
6eb126c5 2730 "mirror://xorg/X11R7.7/src/everything/xf86-video-sis-"
9aea24b6
AE
2731 version
2732 ".tar.bz2"))
2733 (sha256
2734 (base32
6eb126c5 2735 "03diq0l93lfsipmwkpdb2ysgbxxryl6yakpghzc3fksjxa01112f"))))
9aea24b6 2736 (build-system gnu-build-system)
917748dd
AE
2737 (inputs `(("mesa" ,mesa)
2738 ("pkg-config" ,pkg-config)
2739 ("xf86dgaproto" ,xf86dgaproto)
2740 ("xf86driproto" ,xf86driproto)
2741 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
6eb126c5 2745 (license license:bsd-3)))
5f1d0fb0
AE
2746
2747
6eb126c5 2748(define-public xf86-video-suncg6
9aea24b6 2749 (package
6eb126c5
AE
2750 (name "xf86-video-suncg6")
2751 (version "1.1.1")
9aea24b6
AE
2752 (source
2753 (origin
2754 (method url-fetch)
2755 (uri (string-append
6eb126c5 2756 "mirror://xorg/X11R7.7/src/everything/xf86-video-suncg6-"
9aea24b6
AE
2757 version
2758 ".tar.bz2"))
2759 (sha256
2760 (base32
6eb126c5 2761 "07w0hm63fiy5l3cpcjsl0ig8z84z9r36xm0cmnpiv3g75dy6q8fi"))))
9aea24b6 2762 (build-system gnu-build-system)
917748dd
AE
2763 (inputs `(("pkg-config" ,pkg-config)
2764 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2768 (license license:x11)))
5f1d0fb0
AE
2769
2770
6eb126c5 2771(define-public xf86-video-sunffb
9aea24b6 2772 (package
6eb126c5
AE
2773 (name "xf86-video-sunffb")
2774 (version "1.2.1")
9aea24b6
AE
2775 (source
2776 (origin
2777 (method url-fetch)
2778 (uri (string-append
6eb126c5 2779 "mirror://xorg/X11R7.7/src/everything/xf86-video-sunffb-"
9aea24b6
AE
2780 version
2781 ".tar.bz2"))
2782 (sha256
2783 (base32
6eb126c5 2784 "04byax4sc1fn183vyyq0q11q730k16h2by4ggjky7s36wgv7ldzx"))))
9aea24b6 2785 (build-system gnu-build-system)
917748dd
AE
2786 (inputs `(("pkg-config" ,pkg-config)
2787 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2791 (license license:x11)))
5f1d0fb0
AE
2792
2793
6eb126c5 2794(define-public xf86-video-tdfx
9aea24b6 2795 (package
6eb126c5
AE
2796 (name "xf86-video-tdfx")
2797 (version "1.4.4")
9aea24b6
AE
2798 (source
2799 (origin
2800 (method url-fetch)
2801 (uri (string-append
6eb126c5 2802 "mirror://xorg/X11R7.7/src/everything/xf86-video-tdfx-"
9aea24b6
AE
2803 version
2804 ".tar.bz2"))
2805 (sha256
2806 (base32
6eb126c5 2807 "124gsi30rj547jjd7gvv7xykfnwlyrxw0gcacamby7pvl3g33fg0"))))
9aea24b6 2808 (build-system gnu-build-system)
917748dd
AE
2809 (inputs `(("mesa" ,mesa)
2810 ("pkg-config" ,pkg-config)
2811 ("xf86driproto" ,xf86driproto)
2812 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2816 (license license:x11)))
5f1d0fb0
AE
2817
2818
6eb126c5 2819(define-public xf86-video-tga
9aea24b6 2820 (package
6eb126c5
AE
2821 (name "xf86-video-tga")
2822 (version "1.2.1")
9aea24b6
AE
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (string-append
6eb126c5 2827 "mirror://xorg/X11R7.7/src/everything/xf86-video-tga-"
9aea24b6
AE
2828 version
2829 ".tar.bz2"))
2830 (sha256
2831 (base32
6eb126c5 2832 "0mdqrn02zzkdnmhg4vh9djaawg6b2p82g5qbj66z8b30yr77b93h"))))
9aea24b6 2833 (build-system gnu-build-system)
917748dd
AE
2834 (inputs `(("pkg-config" ,pkg-config)
2835 ("xf86dgaproto" ,xf86dgaproto)
2836 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2840 (license license:x11)))
5f1d0fb0
AE
2841
2842
6eb126c5 2843(define-public xf86-video-trident
9aea24b6 2844 (package
6eb126c5
AE
2845 (name "xf86-video-trident")
2846 (version "1.3.5")
9aea24b6
AE
2847 (source
2848 (origin
2849 (method url-fetch)
2850 (uri (string-append
6eb126c5 2851 "mirror://xorg/X11R7.7/src/everything/xf86-video-trident-"
9aea24b6
AE
2852 version
2853 ".tar.bz2"))
2854 (sha256
2855 (base32
6eb126c5 2856 "02y5pzdp0a1c12jr8gghbrzgbyfbgq67x7kd7n4f323pmf8x1csb"))))
9aea24b6 2857 (build-system gnu-build-system)
917748dd
AE
2858 (inputs `(("pkg-config" ,pkg-config)
2859 ("xf86dgaproto" ,xf86dgaproto)
2860 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2864 (license license:x11)))
5f1d0fb0
AE
2865
2866
124b7f1e 2867;; no license
6eb126c5 2868;; (define-public xf86-video-v4l
6eb126c5
AE
2869
2870
2871(define-public xf86-video-vesa
9aea24b6 2872 (package
6eb126c5
AE
2873 (name "xf86-video-vesa")
2874 (version "2.3.1")
9aea24b6
AE
2875 (source
2876 (origin
2877 (method url-fetch)
2878 (uri (string-append
6eb126c5 2879 "mirror://xorg/X11R7.7/src/everything/xf86-video-vesa-"
9aea24b6
AE
2880 version
2881 ".tar.bz2"))
2882 (sha256
2883 (base32
6eb126c5 2884 "0wqms28kkz2fvghqhqwp6w8zj7k5cgwnhzvkc7j4v268bf6h78g4"))))
9aea24b6 2885 (build-system gnu-build-system)
917748dd
AE
2886 (inputs `(("pkg-config" ,pkg-config)
2887 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2891 (license license:x11)))
5f1d0fb0
AE
2892
2893
6eb126c5 2894(define-public xf86-video-vmware
9aea24b6 2895 (package
6eb126c5
AE
2896 (name "xf86-video-vmware")
2897 (version "12.0.2")
9aea24b6
AE
2898 (source
2899 (origin
2900 (method url-fetch)
2901 (uri (string-append
6eb126c5 2902 "mirror://xorg/X11R7.7/src/everything/xf86-video-vmware-"
9aea24b6
AE
2903 version
2904 ".tar.bz2"))
2905 (sha256
2906 (base32
6eb126c5 2907 "0isiwx516gww8hfk3vy7js83yziyjym9mq2zjadyq1a8v5gqf9y8"))))
9aea24b6 2908 (build-system gnu-build-system)
917748dd
AE
2909 (inputs `(("libx11" ,libx11)
2910 ("libxext" ,libxext)
2911 ("pkg-config" ,pkg-config)
2912 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2916 (license license:x11)))
5f1d0fb0
AE
2917
2918
6eb126c5 2919(define-public xf86-video-voodoo
9aea24b6 2920 (package
6eb126c5
AE
2921 (name "xf86-video-voodoo")
2922 (version "1.2.4")
9aea24b6
AE
2923 (source
2924 (origin
2925 (method url-fetch)
2926 (uri (string-append
6eb126c5 2927 "mirror://xorg/X11R7.7/src/everything/xf86-video-voodoo-"
9aea24b6
AE
2928 version
2929 ".tar.bz2"))
2930 (sha256
2931 (base32
6eb126c5 2932 "0ha748yz92yzn6hp2rhin3il8f4j2rs4vkgdvqkagnv1ryxkh0ph"))))
9aea24b6 2933 (build-system gnu-build-system)
917748dd
AE
2934 (inputs `(("pkg-config" ,pkg-config)
2935 ("xf86dgaproto" ,xf86dgaproto)
2936 ("xorg-server" ,xorg-server)))
5223c826
AE
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")
d385b835 2940 (license license:x11)))
5f1d0fb0
AE
2941
2942
6706269e
AE
2943;; Only relevant for the frame buffer on BSD systems.
2944;; (define-public xf86-video-wsfb
5f1d0fb0
AE
2945
2946
6eb126c5 2947(define-public xf86bigfontproto
9aea24b6 2948 (package
6eb126c5
AE
2949 (name "xf86bigfontproto")
2950 (version "1.2.0")
9aea24b6
AE
2951 (source
2952 (origin
2953 (method url-fetch)
2954 (uri (string-append
6eb126c5 2955 "mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-"
9aea24b6
AE
2956 version
2957 ".tar.bz2"))
2958 (sha256
2959 (base32
6eb126c5 2960 "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
9aea24b6 2961 (build-system gnu-build-system)
5223c826
AE
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")
d385b835 2965 (license license:x11)))
5f1d0fb0
AE
2966
2967
6eb126c5 2968(define-public xf86dgaproto
9aea24b6 2969 (package
6eb126c5
AE
2970 (name "xf86dgaproto")
2971 (version "2.1")
9aea24b6
AE
2972 (source
2973 (origin
2974 (method url-fetch)
2975 (uri (string-append
6eb126c5 2976 "mirror://xorg/X11R7.7/src/everything/xf86dgaproto-"
9aea24b6
AE
2977 version
2978 ".tar.bz2"))
2979 (sha256
2980 (base32
6eb126c5 2981 "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
9aea24b6 2982 (build-system gnu-build-system)
5223c826
AE
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")
d385b835 2986 (license license:x11)))
5f1d0fb0
AE
2987
2988
6eb126c5 2989(define-public xf86driproto
9aea24b6 2990 (package
6eb126c5
AE
2991 (name "xf86driproto")
2992 (version "2.1.1")
9aea24b6
AE
2993 (source
2994 (origin
2995 (method url-fetch)
2996 (uri (string-append
6eb126c5 2997 "mirror://xorg/X11R7.7/src/everything/xf86driproto-"
9aea24b6
AE
2998 version
2999 ".tar.bz2"))
3000 (sha256
3001 (base32
6eb126c5 3002 "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
9aea24b6 3003 (build-system gnu-build-system)
5223c826
AE
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")
d385b835 3007 (license license:x11)))
5f1d0fb0
AE
3008
3009
6eb126c5 3010(define-public xf86vidmodeproto
9aea24b6 3011 (package
6eb126c5
AE
3012 (name "xf86vidmodeproto")
3013 (version "2.3.1")
9aea24b6
AE
3014 (source
3015 (origin
3016 (method url-fetch)
3017 (uri (string-append
6eb126c5 3018 "mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-"
9aea24b6
AE
3019 version
3020 ".tar.bz2"))
3021 (sha256
3022 (base32
6eb126c5 3023 "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
9aea24b6 3024 (build-system gnu-build-system)
5223c826
AE
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")
d385b835 3028 (license license:x11)))
5f1d0fb0
AE
3029
3030
6eb126c5 3031(define-public xgamma
9aea24b6 3032 (package
6eb126c5
AE
3033 (name "xgamma")
3034 (version "1.0.5")
9aea24b6
AE
3035 (source
3036 (origin
3037 (method url-fetch)
3038 (uri (string-append
6eb126c5 3039 "mirror://xorg/X11R7.7/src/everything/xgamma-"
9aea24b6
AE
3040 version
3041 ".tar.bz2"))
3042 (sha256
3043 (base32
6eb126c5 3044 "0463sawps86jnxn121ramsz4sicy3az5wa5wsq4rqm8dm3za48p3"))))
9aea24b6 3045 (build-system gnu-build-system)
6eb126c5
AE
3046 (inputs
3047 `(("libxxf86vm" ,libxxf86vm)
3048 ("libx11" ,libx11)
3049 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
6eb126c5 3053 (license license:x11)))
5f1d0fb0
AE
3054
3055
6eb126c5 3056(define-public xhost
9aea24b6 3057 (package
6eb126c5
AE
3058 (name "xhost")
3059 (version "1.0.5")
9aea24b6
AE
3060 (source
3061 (origin
3062 (method url-fetch)
3063 (uri (string-append
6eb126c5 3064 "mirror://xorg/X11R7.7/src/everything/xhost-"
9aea24b6
AE
3065 version
3066 ".tar.bz2"))
3067 (sha256
3068 (base32
6eb126c5 3069 "0l483y6wfrjh37j16b41kpi2nc7ss5rvndafpbaylrs87ygx2w18"))))
9aea24b6 3070 (build-system gnu-build-system)
6eb126c5
AE
3071 (inputs
3072 `(("libxmu" ,libxmu)
3073 ("libxau" ,libxau)
3074 ("libx11" ,libx11)
3075 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3079 (license license:x11)))
5f1d0fb0
AE
3080
3081
6eb126c5 3082(define-public xineramaproto
9aea24b6 3083 (package
6eb126c5 3084 (name "xineramaproto")
5f1d0fb0 3085 (version "1.2.1")
9aea24b6
AE
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (string-append
6eb126c5 3090 "mirror://xorg/X11R7.7/src/everything/xineramaproto-"
9aea24b6
AE
3091 version
3092 ".tar.bz2"))
3093 (sha256
3094 (base32
6eb126c5 3095 "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
9aea24b6 3096 (build-system gnu-build-system)
6eb126c5 3097 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3101 (license license:x11)))
5f1d0fb0
AE
3102
3103
6eb126c5 3104(define-public xinput
9aea24b6 3105 (package
6eb126c5
AE
3106 (name "xinput")
3107 (version "1.6.0")
9aea24b6
AE
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (string-append
6eb126c5 3112 "mirror://xorg/X11R7.7/src/everything/xinput-"
9aea24b6
AE
3113 version
3114 ".tar.bz2"))
3115 (sha256
3116 (base32
6eb126c5 3117 "0zl4cdgnzh9shz20yn7hz889v4nkbyqwx0nb7dh6arn7abchgc2a"))))
9aea24b6 3118 (build-system gnu-build-system)
6eb126c5
AE
3119 (inputs
3120 `(("libxrender" ,libxrender)
3121 ("libxrandr" ,libxrandr)
3122 ("libxinerama" ,libxinerama)
3123 ("libxi" ,libxi)
6eb126c5
AE
3124 ("libx11" ,libx11)
3125 ("inputproto" ,inputproto)
3126 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3130 (license license:x11)))
5f1d0fb0
AE
3131
3132
2365338b 3133(define xkbcomp-intermediate ; used as input for xkeyboard-config
9aea24b6 3134 (package
2365338b 3135 (name "xkbcomp-intermediate")
6eb126c5 3136 (version "1.2.4")
9aea24b6
AE
3137 (source
3138 (origin
3139 (method url-fetch)
3140 (uri (string-append
6eb126c5 3141 "mirror://xorg/X11R7.7/src/everything/xkbcomp-"
9aea24b6
AE
3142 version
3143 ".tar.bz2"))
3144 (sha256
3145 (base32
6eb126c5 3146 "0bas1d2wjiy5zy9d0g92d2p9pwv4aapfbfidi7hxy8ax8jmwkl4i"))))
9aea24b6 3147 (build-system gnu-build-system)
6eb126c5
AE
3148 (inputs
3149 `(("xproto" ,xproto)
3150 ("libxkbfile" ,libxkbfile)
3151 ("libx11" ,libx11)
3152 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3156 (license license:x11)))
5f1d0fb0 3157
2365338b
AE
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
5f1d0fb0 3170
6eb126c5 3171(define-public xkbevd
9aea24b6 3172 (package
6eb126c5
AE
3173 (name "xkbevd")
3174 (version "1.1.3")
9aea24b6
AE
3175 (source
3176 (origin
3177 (method url-fetch)
3178 (uri (string-append
6eb126c5 3179 "mirror://xorg/X11R7.7/src/everything/xkbevd-"
9aea24b6
AE
3180 version
3181 ".tar.bz2"))
3182 (sha256
3183 (base32
6eb126c5 3184 "05h1xcnbalndbrryyqs8wzy9h3wz655vc0ymhlk2q4aik17licjm"))))
9aea24b6 3185 (build-system gnu-build-system)
6eb126c5
AE
3186 (inputs
3187 `(("libxkbfile" ,libxkbfile)
3188 ("libx11" ,libx11)
3189 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3193 (license license:x11)))
5f1d0fb0
AE
3194
3195
6eb126c5 3196(define-public xkbutils
9aea24b6 3197 (package
6eb126c5
AE
3198 (name "xkbutils")
3199 (version "1.0.3")
9aea24b6
AE
3200 (source
3201 (origin
3202 (method url-fetch)
3203 (uri (string-append
6eb126c5 3204 "mirror://xorg/X11R7.7/src/everything/xkbutils-"
9aea24b6
AE
3205 version
3206 ".tar.bz2"))
3207 (sha256
3208 (base32
6eb126c5 3209 "1ga913pw6chssf2016kjyjl6ar2lj83pa497w97ak2kq603sy2g4"))))
9aea24b6 3210 (build-system gnu-build-system)
6eb126c5
AE
3211 (inputs
3212 `(("libxt" ,libxt)
3213 ("xproto" ,xproto)
3214 ("libxaw" ,libxaw)
6eb126c5
AE
3215 ("inputproto" ,inputproto)
3216 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3220 (license license:x11)))
5f1d0fb0
AE
3221
3222
6eb126c5 3223(define-public xkeyboard-config
9aea24b6 3224 (package
6eb126c5
AE
3225 (name "xkeyboard-config")
3226 (version "2.6")
9aea24b6
AE
3227 (source
3228 (origin
3229 (method url-fetch)
3230 (uri (string-append
6eb126c5 3231 "mirror://xorg/X11R7.7/src/everything/xkeyboard-config-"
9aea24b6
AE
3232 version
3233 ".tar.bz2"))
3234 (sha256
3235 (base32
6eb126c5 3236 "1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
5f1d0fb0 3237 (build-system gnu-build-system)
6eb126c5 3238 (inputs
42ed9985
AE
3239 `(("gettext" ,gnu:gettext)
3240 ("intltool" ,intltool)
3241 ("libx11" ,libx11)
6eb126c5 3242 ("pkg-config" ,pkg-config)
2365338b 3243 ("xkbcomp-intermediate" ,xkbcomp-intermediate)))
5223c826
AE
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")
d385b835 3247 (license license:x11)))
5f1d0fb0
AE
3248
3249
6eb126c5 3250(define-public xkill
9aea24b6 3251 (package
6eb126c5
AE
3252 (name "xkill")
3253 (version "1.0.3")
9aea24b6
AE
3254 (source
3255 (origin
3256 (method url-fetch)
3257 (uri (string-append
6eb126c5 3258 "mirror://xorg/X11R7.7/src/everything/xkill-"
9aea24b6
AE
3259 version
3260 ".tar.bz2"))
3261 (sha256
3262 (base32
6eb126c5 3263 "1ac110qbb9a4x1dim3vaghvdk3jc708i2p3f4rmag33458khg0xx"))))
9aea24b6 3264 (build-system gnu-build-system)
6eb126c5
AE
3265 (inputs
3266 `(("libxmu" ,libxmu)
3267 ("libx11" ,libx11)
3268 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3272 (license license:x11)))
5f1d0fb0
AE
3273
3274
6eb126c5 3275(define-public xlsatoms
9aea24b6 3276 (package
6eb126c5
AE
3277 (name "xlsatoms")
3278 (version "1.1.1")
9aea24b6
AE
3279 (source
3280 (origin
3281 (method url-fetch)
3282 (uri (string-append
6eb126c5 3283 "mirror://xorg/X11R7.7/src/everything/xlsatoms-"
9aea24b6
AE
3284 version
3285 ".tar.bz2"))
3286 (sha256
3287 (base32
6eb126c5 3288 "1y9nfl8s7njxbnci8c20j986xixharasgg40vdw92y593j6dk2rv"))))
9aea24b6 3289 (build-system gnu-build-system)
6eb126c5
AE
3290 (inputs
3291 `(("libxcb" ,libxcb)
3292 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
6eb126c5 3296 (license license:x11)))
5f1d0fb0
AE
3297
3298
6eb126c5 3299(define-public xlsclients
9aea24b6 3300 (package
6eb126c5
AE
3301 (name "xlsclients")
3302 (version "1.1.2")
9aea24b6
AE
3303 (source
3304 (origin
3305 (method url-fetch)
3306 (uri (string-append
6eb126c5 3307 "mirror://xorg/X11R7.7/src/everything/xlsclients-"
9aea24b6
AE
3308 version
3309 ".tar.bz2"))
3310 (sha256
3311 (base32
6eb126c5 3312 "1l97j15mg4wfzpm81wlpzagfjff7v4fwn7s2z2rpksk3gfcg7r8w"))))
9aea24b6 3313 (build-system gnu-build-system)
6eb126c5
AE
3314 (inputs
3315 `(("libxcb" ,libxcb)
3316 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3320 (license license:x11)))
5f1d0fb0
AE
3321
3322
6eb126c5 3323(define-public xmodmap
9aea24b6 3324 (package
6eb126c5
AE
3325 (name "xmodmap")
3326 (version "1.0.7")
9aea24b6
AE
3327 (source
3328 (origin
3329 (method url-fetch)
3330 (uri (string-append
6eb126c5 3331 "mirror://xorg/X11R7.7/src/everything/xmodmap-"
9aea24b6
AE
3332 version
3333 ".tar.bz2"))
3334 (sha256
3335 (base32
6eb126c5 3336 "1dg47lay4vhrl9mfq3cfc6741a0m2n8wd4ljagd21ix3qklys8pg"))))
9aea24b6 3337 (build-system gnu-build-system)
6eb126c5
AE
3338 (inputs
3339 `(("xproto" ,xproto)
3340 ("libx11" ,libx11)
3341 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3345 (license license:x11)))
5f1d0fb0
AE
3346
3347
124b7f1e 3348;; no license
6eb126c5 3349;; (define-public xorg-docs
6eb126c5
AE
3350
3351
6eb126c5 3352(define-public xorg-sgml-doctools
9aea24b6 3353 (package
6eb126c5
AE
3354 (name "xorg-sgml-doctools")
3355 (version "1.11")
9aea24b6
AE
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (string-append
6eb126c5 3360 "mirror://xorg/X11R7.7/src/everything/xorg-sgml-doctools-"
9aea24b6
AE
3361 version
3362 ".tar.bz2"))
3363 (sha256
3364 (base32
6eb126c5 3365 "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
9aea24b6 3366 (build-system gnu-build-system)
6eb126c5 3367 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3371 (license license:x11)))
5f1d0fb0
AE
3372
3373
6eb126c5 3374(define-public xpr
9aea24b6 3375 (package
6eb126c5
AE
3376 (name "xpr")
3377 (version "1.0.4")
9aea24b6
AE
3378 (source
3379 (origin
3380 (method url-fetch)
3381 (uri (string-append
6eb126c5 3382 "mirror://xorg/X11R7.7/src/everything/xpr-"
9aea24b6
AE
3383 version
3384 ".tar.bz2"))
3385 (sha256
3386 (base32
6eb126c5 3387 "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
9aea24b6
AE
3388 (build-system gnu-build-system)
3389 (inputs
6eb126c5
AE
3390 `(("xproto" ,xproto)
3391 ("libxmu" ,libxmu)
9aea24b6
AE
3392 ("libx11" ,libx11)
3393 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3397 (license license:x11)))
5f1d0fb0
AE
3398
3399
6eb126c5 3400(define-public xprop
9aea24b6 3401 (package
6eb126c5
AE
3402 (name "xprop")
3403 (version "1.2.1")
9aea24b6
AE
3404 (source
3405 (origin
3406 (method url-fetch)
3407 (uri (string-append
6eb126c5 3408 "mirror://xorg/X11R7.7/src/everything/xprop-"
9aea24b6
AE
3409 version
3410 ".tar.bz2"))
3411 (sha256
3412 (base32
6eb126c5 3413 "18zi2any13zlb7f34fzyw6lkiwkd6k2scp3b800a1f4rj0c7m407"))))
9aea24b6
AE
3414 (build-system gnu-build-system)
3415 (inputs
6eb126c5 3416 `(("xproto" ,xproto)
9aea24b6
AE
3417 ("libx11" ,libx11)
3418 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3422 (license license:x11)))
5f1d0fb0
AE
3423
3424
6eb126c5 3425(define-public xrandr
9aea24b6 3426 (package
6eb126c5
AE
3427 (name "xrandr")
3428 (version "1.3.5")
9aea24b6
AE
3429 (source
3430 (origin
3431 (method url-fetch)
3432 (uri (string-append
6eb126c5 3433 "mirror://xorg/X11R7.7/src/everything/xrandr-"
9aea24b6
AE
3434 version
3435 ".tar.bz2"))
3436 (sha256
3437 (base32
6eb126c5 3438 "03lq1c1q4w5cf2ijs4b34v008lshibha9zv5lw08xpyhk9xgyn8h"))))
9aea24b6 3439 (build-system gnu-build-system)
6eb126c5
AE
3440 (inputs
3441 `(("libxrender" ,libxrender)
3442 ("libxrandr" ,libxrandr)
3443 ("xproto" ,xproto)
3444 ("libx11" ,libx11)
3445 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3449 (license license:x11)))
5f1d0fb0
AE
3450
3451
6eb126c5 3452(define-public xrdb
9aea24b6 3453 (package
6eb126c5
AE
3454 (name "xrdb")
3455 (version "1.0.9")
9aea24b6
AE
3456 (source
3457 (origin
3458 (method url-fetch)
3459 (uri (string-append
6eb126c5 3460 "mirror://xorg/X11R7.7/src/everything/xrdb-"
9aea24b6
AE
3461 version
3462 ".tar.bz2"))
3463 (sha256
3464 (base32
6eb126c5 3465 "1dza5a34nj68fzhlgwf18i5bk0n24ig28yihwpjy7vwn57hh2934"))))
9aea24b6
AE
3466 (build-system gnu-build-system)
3467 (inputs
6eb126c5 3468 `(("libxmu" ,libxmu)
9aea24b6 3469 ("libx11" ,libx11)
9aea24b6 3470 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3474 (license license:x11)))
5f1d0fb0
AE
3475
3476
6eb126c5 3477(define-public xrefresh
9aea24b6 3478 (package
6eb126c5
AE
3479 (name "xrefresh")
3480 (version "1.0.4")
9aea24b6
AE
3481 (source
3482 (origin
3483 (method url-fetch)
3484 (uri (string-append
6eb126c5 3485 "mirror://xorg/X11R7.7/src/everything/xrefresh-"
9aea24b6
AE
3486 version
3487 ".tar.bz2"))
3488 (sha256
3489 (base32
6eb126c5 3490 "0ywxzwa4kmnnmf8idr8ssgcil9xvbhnk155zpsh2i8ay93mh5586"))))
9aea24b6
AE
3491 (build-system gnu-build-system)
3492 (inputs
6eb126c5 3493 `(("libx11" ,libx11)
9aea24b6 3494 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3498 (license license:x11)))
5f1d0fb0
AE
3499
3500
6eb126c5 3501(define-public xset
9aea24b6 3502 (package
6eb126c5
AE
3503 (name "xset")
3504 (version "1.2.2")
9aea24b6
AE
3505 (source
3506 (origin
3507 (method url-fetch)
3508 (uri (string-append
6eb126c5 3509 "mirror://xorg/X11R7.7/src/everything/xset-"
9aea24b6
AE
3510 version
3511 ".tar.bz2"))
3512 (sha256
3513 (base32
6eb126c5 3514 "1s61mvscd0h7y6anljarj7nkii6plhs8ndx1fm8b1f1h00a1qdv1"))))
9aea24b6
AE
3515 (build-system gnu-build-system)
3516 (inputs
c7f99931 3517 `(("xproto" ,xproto)
6eb126c5
AE
3518 ("libxmu" ,libxmu)
3519 ("libxext" ,libxext)
9aea24b6
AE
3520 ("libx11" ,libx11)
3521 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3525 (license license:x11)))
5f1d0fb0
AE
3526
3527
6eb126c5 3528(define-public xsetroot
9aea24b6 3529 (package
6eb126c5
AE
3530 (name "xsetroot")
3531 (version "1.1.0")
9aea24b6
AE
3532 (source
3533 (origin
3534 (method url-fetch)
3535 (uri (string-append
6eb126c5 3536 "mirror://xorg/X11R7.7/src/everything/xsetroot-"
9aea24b6
AE
3537 version
3538 ".tar.bz2"))
3539 (sha256
3540 (base32
6eb126c5 3541 "1bazzsf9sy0q2bj4lxvh1kvyrhmpggzb7jg575i15sksksa3xwc8"))))
9aea24b6
AE
3542 (build-system gnu-build-system)
3543 (inputs
6eb126c5
AE
3544 `(("libxmu" ,libxmu)
3545 ("libxcursor" ,libxcursor)
3546 ("xbitmaps" ,xbitmaps)
9aea24b6 3547 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3551 (license license:x11)))
5f1d0fb0
AE
3552
3553
6eb126c5 3554(define-public xtrans
9aea24b6 3555 (package
6eb126c5
AE
3556 (name "xtrans")
3557 (version "1.2.7")
9aea24b6
AE
3558 (source
3559 (origin
3560 (method url-fetch)
3561 (uri (string-append
6eb126c5 3562 "mirror://xorg/X11R7.7/src/everything/xtrans-"
9aea24b6
AE
3563 version
3564 ".tar.bz2"))
3565 (sha256
3566 (base32
6eb126c5 3567 "19p1bw3qyn0ia1znx6q3gx92rr9rl88ylrfijjclm8vhpa8i30bz"))))
9aea24b6
AE
3568 (build-system gnu-build-system)
3569 (inputs `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3573 (license license:x11)))
5f1d0fb0
AE
3574
3575
6eb126c5 3576(define-public xvinfo
9aea24b6 3577 (package
6eb126c5
AE
3578 (name "xvinfo")
3579 (version "1.1.1")
9aea24b6
AE
3580 (source
3581 (origin
3582 (method url-fetch)
3583 (uri (string-append
6eb126c5 3584 "mirror://xorg/X11R7.7/src/everything/xvinfo-"
9aea24b6
AE
3585 version
3586 ".tar.bz2"))
3587 (sha256
3588 (base32
6eb126c5 3589 "119rd93d7661ll1rfcdssn78l0b97326smziyr2f5wdwj2hlmiv0"))))
9aea24b6
AE
3590 (build-system gnu-build-system)
3591 (inputs
6eb126c5
AE
3592 `(("libxext" ,libxext)
3593 ("libxv" ,libxv)
9aea24b6
AE
3594 ("libx11" ,libx11)
3595 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3599 (license license:x11)))
5f1d0fb0
AE
3600
3601
6eb126c5 3602(define-public xwd
9aea24b6 3603 (package
6eb126c5
AE
3604 (name "xwd")
3605 (version "1.0.5")
9aea24b6
AE
3606 (source
3607 (origin
3608 (method url-fetch)
3609 (uri (string-append
6eb126c5 3610 "mirror://xorg/X11R7.7/src/everything/xwd-"
9aea24b6
AE
3611 version
3612 ".tar.bz2"))
3613 (sha256
3614 (base32
6eb126c5 3615 "0fkg6msy2zg7rda2rpxb7j6vmrdmqmk72xsxnyhz97196ykjnx82"))))
9aea24b6
AE
3616 (build-system gnu-build-system)
3617 (inputs
6eb126c5
AE
3618 `(("libxt" ,libxt)
3619 ("xproto" ,xproto)
d385b835 3620 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3624 (license license:x11)))
5f1d0fb0
AE
3625
3626
6eb126c5 3627(define-public xwininfo
9aea24b6 3628 (package
6eb126c5 3629 (name "xwininfo")
9aea24b6
AE
3630 (version "1.1.2")
3631 (source
3632 (origin
3633 (method url-fetch)
3634 (uri (string-append
6eb126c5 3635 "mirror://xorg/X11R7.7/src/everything/xwininfo-"
9aea24b6
AE
3636 version
3637 ".tar.bz2"))
3638 (sha256
3639 (base32
6eb126c5 3640 "0fmcr5yl03xw7m8p9h1rk67rrj7gp5x16a547xhmg8idw2f6r9lg"))))
9aea24b6
AE
3641 (build-system gnu-build-system)
3642 (inputs
c7f99931
AE
3643 `(("libx11" ,libx11)
3644 ("pkg-config" ,pkg-config)
3645 ("xproto" ,xproto)))
5223c826
AE
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")
d385b835 3649 (license license:x11)))
5f1d0fb0
AE
3650
3651
6eb126c5 3652(define-public xwud
9aea24b6 3653 (package
6eb126c5
AE
3654 (name "xwud")
3655 (version "1.0.4")
9aea24b6
AE
3656 (source
3657 (origin
3658 (method url-fetch)
3659 (uri (string-append
6eb126c5 3660 "mirror://xorg/X11R7.7/src/everything/xwud-"
9aea24b6
AE
3661 version
3662 ".tar.bz2"))
3663 (sha256
3664 (base32
6eb126c5 3665 "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
9aea24b6
AE
3666 (build-system gnu-build-system)
3667 (inputs
3668 `(("xproto" ,xproto)
3669 ("libx11" ,libx11)
3670 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3674 (license license:x11)))
5f1d0fb0
AE
3675
3676
5f1d0fb0 3677
6eb126c5 3678;; packages of height 1 in the propagated-inputs tree
5f1d0fb0 3679
6eb126c5 3680(define-public fixesproto
9aea24b6 3681 (package
6eb126c5
AE
3682 (name "fixesproto")
3683 (version "5.0")
9aea24b6
AE
3684 (source
3685 (origin
3686 (method url-fetch)
3687 (uri (string-append
6eb126c5 3688 "mirror://xorg/X11R7.7/src/everything/fixesproto-"
9aea24b6
AE
3689 version
3690 ".tar.bz2"))
3691 (sha256
3692 (base32
6eb126c5 3693 "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
9aea24b6 3694 (build-system gnu-build-system)
6eb126c5
AE
3695 (propagated-inputs
3696 `(("xextproto" ,xextproto)))
9aea24b6 3697 (inputs
6eb126c5
AE
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
6f52fb63
AE
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)
6f52fb63 3725 ("libx11" ,libx11)
6f52fb63
AE
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
6eb126c5
AE
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)
6eb126c5
AE
3752 ("libx11" ,libx11)
3753 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3757 (license license:x11)))
5f1d0fb0
AE
3758
3759
6eb126c5 3760(define-public libxinerama
9aea24b6 3761 (package
6eb126c5
AE
3762 (name "libxinerama")
3763 (version "1.1.2")
9aea24b6
AE
3764 (source
3765 (origin
3766 (method url-fetch)
3767 (uri (string-append
6eb126c5 3768 "mirror://xorg/X11R7.7/src/everything/libXinerama-"
9aea24b6
AE
3769 version
3770 ".tar.bz2"))
3771 (sha256
3772 (base32
6eb126c5 3773 "1b3aq1762hxzchd9ndavdjlksq93991s0g2z6spf8wl3v0pprrx4"))))
9aea24b6 3774 (build-system gnu-build-system)
6eb126c5
AE
3775 (propagated-inputs
3776 `(("xineramaproto" ,xineramaproto)))
3777 (inputs
c7f99931 3778 `(("libxext" ,libxext)
6eb126c5
AE
3779 ("libx11" ,libx11)
3780 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3784 (license license:x11)))
5f1d0fb0
AE
3785
3786
bd8c5d5b
AE
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
6eb126c5 3815(define-public libxrender
9aea24b6 3816 (package
6eb126c5
AE
3817 (name "libxrender")
3818 (version "0.9.7")
9aea24b6
AE
3819 (source
3820 (origin
3821 (method url-fetch)
3822 (uri (string-append
6eb126c5 3823 "mirror://xorg/X11R7.7/src/everything/libXrender-"
9aea24b6
AE
3824 version
3825 ".tar.bz2"))
3826 (sha256
3827 (base32
6eb126c5 3828 "1rmvja2gkf5v0k2n1bcghw8v98m2kfn3af0rbmsda5dwr69npd7r"))))
9aea24b6 3829 (build-system gnu-build-system)
6eb126c5
AE
3830 (propagated-inputs
3831 `(("renderproto" ,renderproto)))
9aea24b6
AE
3832 (inputs
3833 `(("xproto" ,xproto)
9aea24b6
AE
3834 ("libx11" ,libx11)
3835 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3839 (license license:x11)))
5f1d0fb0
AE
3840
3841
6eb126c5 3842(define-public libxtst
9aea24b6 3843 (package
6eb126c5 3844 (name "libxtst")
9aea24b6
AE
3845 (version "1.2.1")
3846 (source
3847 (origin
3848 (method url-fetch)
3849 (uri (string-append
6eb126c5 3850 "mirror://xorg/X11R7.7/src/everything/libXtst-"
9aea24b6
AE
3851 version
3852 ".tar.bz2"))
3853 (sha256
3854 (base32
6eb126c5 3855 "1q750hjplq1rfyxkr4545z1y2a1wfnc828ynvbws7b4jwdk3xsky"))))
9aea24b6 3856 (build-system gnu-build-system)
6eb126c5
AE
3857 (propagated-inputs
3858 `(("recordproto" ,recordproto)))
9aea24b6 3859 (inputs
6eb126c5 3860 `(("libxi" ,libxi)
9aea24b6 3861 ("libx11" ,libx11)
6eb126c5 3862 ("inputproto" ,inputproto)
9aea24b6 3863 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3867 (license license:x11)))
5f1d0fb0
AE
3868
3869
979bc0f4 3870(define-public libxv
917748dd 3871 (package
979bc0f4 3872 (name "libxv")
917748dd
AE
3873 (version "1.0.7")
3874 (source
3875 (origin
3876 (method url-fetch)
3877 (uri (string-append
979bc0f4 3878 "mirror://xorg/X11R7.7/src/everything/libXv-"
917748dd
AE
3879 version
3880 ".tar.bz2"))
3881 (sha256
3882 (base32
979bc0f4 3883 "044hllz013afhzywwpxz007l4zjy99bv9im065rqd30zckmllrjx"))))
917748dd
AE
3884 (build-system gnu-build-system)
3885 (propagated-inputs
979bc0f4 3886 `(("videoproto" ,videoproto)))
917748dd
AE
3887 (inputs
3888 `(("xproto" ,xproto)
917748dd
AE
3889 ("libxext" ,libxext)
3890 ("libx11" ,libx11)
917748dd
AE
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
6eb126c5
AE
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
9aea24b6
AE
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)
6eb126c5
AE
3938 (propagated-inputs
3939 `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
3940 (inputs
3941 `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3945 (license license:x11)))
5f1d0fb0
AE
3946
3947
6eb126c5
AE
3948
3949;; packages of height 2 in the propagated-inputs tree
3950
3951(define-public libice
9aea24b6 3952 (package
6eb126c5
AE
3953 (name "libice")
3954 (version "1.0.8")
9aea24b6
AE
3955 (source
3956 (origin
3957 (method url-fetch)
3958 (uri (string-append
6eb126c5 3959 "mirror://xorg/X11R7.7/src/everything/libICE-"
9aea24b6
AE
3960 version
3961 ".tar.bz2"))
3962 (sha256
3963 (base32
6eb126c5 3964 "07mp13pb3s73kj7y490gnx619znzwk91mlf8kdw0rzq29ll93a94"))))
9aea24b6 3965 (build-system gnu-build-system)
6eb126c5
AE
3966 (propagated-inputs
3967 `(("xproto" ,xproto)))
9aea24b6 3968 (inputs
6eb126c5 3969 `(("xtrans" ,xtrans)
9aea24b6 3970 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3974 (license license:x11)))
5f1d0fb0
AE
3975
3976
6eb126c5 3977(define-public libxau
9aea24b6 3978 (package
6eb126c5
AE
3979 (name "libxau")
3980 (version "1.0.7")
9aea24b6
AE
3981 (source
3982 (origin
3983 (method url-fetch)
3984 (uri (string-append
6eb126c5 3985 "mirror://xorg/X11R7.7/src/everything/libXau-"
9aea24b6
AE
3986 version
3987 ".tar.bz2"))
3988 (sha256
3989 (base32
6eb126c5 3990 "12d4f7sdv2pjxhk0lcay0pahccddszkw579dc59daqi37r8bllvi"))))
9aea24b6 3991 (build-system gnu-build-system)
6eb126c5
AE
3992 (propagated-inputs
3993 `(("xproto" ,xproto)))
9aea24b6 3994 (inputs
6eb126c5 3995 `(("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 3999 (license license:x11)))
5f1d0fb0 4000
6eb126c5 4001(define-public libxfixes
9aea24b6 4002 (package
6eb126c5
AE
4003 (name "libxfixes")
4004 (version "5.0")
9aea24b6
AE
4005 (source
4006 (origin
4007 (method url-fetch)
4008 (uri (string-append
6eb126c5 4009 "mirror://xorg/X11R7.7/src/everything/libXfixes-"
9aea24b6
AE
4010 version
4011 ".tar.bz2"))
4012 (sha256
4013 (base32
6eb126c5 4014 "1qx2rmwhmca2n7rgafy0arp15k5vwhdhhh6v6mx76hlj29328yjk"))))
9aea24b6 4015 (build-system gnu-build-system)
6eb126c5
AE
4016 (propagated-inputs
4017 `(("fixesproto" ,fixesproto)))
9aea24b6 4018 (inputs
6eb126c5 4019 `(("xproto" ,xproto)
9aea24b6
AE
4020 ("libx11" ,libx11)
4021 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 4025 (license license:x11)))
5f1d0fb0
AE
4026
4027
6eb126c5 4028(define-public libxfont
9aea24b6 4029 (package
6eb126c5
AE
4030 (name "libxfont")
4031 (version "1.4.5")
9aea24b6
AE
4032 (source
4033 (origin
4034 (method url-fetch)
4035 (uri (string-append
6eb126c5 4036 "mirror://xorg/X11R7.7/src/everything/libXfont-"
9aea24b6
AE
4037 version
4038 ".tar.bz2"))
4039 (sha256
4040 (base32
6eb126c5 4041 "0w3irg00k6b6mziddnacln9q2rkf5848b04nvjqwv5bb1fw6zydv"))))
9aea24b6 4042 (build-system gnu-build-system)
6eb126c5
AE
4043 (propagated-inputs
4044 `(("fontsproto" ,fontsproto)
4045 ("freetype" ,freetype)
4046 ("libfontenc" ,libfontenc)
4047 ("xproto" ,xproto)))
9aea24b6 4048 (inputs
6eb126c5
AE
4049 `(("zlib" ,zlib)
4050 ("xtrans" ,xtrans)
9aea24b6 4051 ("pkg-config" ,pkg-config)))
84419dfd
AE
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
a459697e
AE
4074 `(("inputproto" ,inputproto)
4075 ("libx11" ,libx11)
4076 ("libxext" ,libxext)))
84419dfd
AE
4077 (inputs
4078 `(("xproto" ,xproto)
84419dfd 4079 ("pkg-config" ,pkg-config)))
5223c826
AE
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")
d385b835 4083 (license license:x11)))
5f1d0fb0
AE
4084
4085
6eb126c5 4086(define-public libxrandr
9aea24b6 4087 (package
6eb126c5
AE
4088 (name "libxrandr")
4089 (version "1.3.2")
9aea24b6
AE
4090 (source
4091 (origin
4092 (method url-fetch)
4093 (uri (string-append
b04ac5a1 4094 "mirror://xorg/X11R7.7/src/everything/libXrandr-"
9aea24b6
AE
4095 version
4096 ".tar.bz2"))
4097 (sha256
4098 (base32
6eb126c5 4099 "10cvv78ws8jznma4s45dzqz0ldcxk30qgsqrc4wxfcsjmcba5b3y"))))
9aea24b6 4100 (build-system gnu-build-system)
6eb126c5
AE
4101 (propagated-inputs
4102 `(("libxext" ,libxext)
4103 ("randrproto" ,randrproto)))
4104 (inputs
4105 `(("libxrender" ,libxrender)
4106 ("xproto" ,xproto)
6eb126c5 4107 ("libx11" ,libx11)
6eb126c5 4108 ("pkg-config" ,pkg-config)))
5223c826
AE
4109 (home-page "http://www.x.org/wiki/")
4110 (synopsis "xorg implementation of the X Window System")
979bc0f4
AE
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)
979bc0f4
AE
4134 ("libxext" ,libxext)
4135 ("libx11" ,libx11)
979bc0f4
AE
4136 ("pkg-config" ,pkg-config)))
4137 (home-page "http://www.x.org/wiki/")
4138 (synopsis "xorg implementation of the X Window System")
47038b76
AE
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)
47038b76
AE
4163 ("pkg-config" ,pkg-config)))
4164 (home-page "http://www.x.org/wiki/")
4165 (synopsis "xorg implementation of the X Window System")
5223c826 4166 (description "X.org provides an implementation of the X Window System")
d385b835 4167 (license license:x11)))
5f1d0fb0
AE
4168
4169
3a5d9585
AE
4170;; package outside the x.org system proper of height 3
4171
4172(define-public mesa
4173 (package
4174 (name "mesa")
e9114708 4175 ;; In newer versions (9.0.5, 9.1 and 9.2 tested), "make" results in an
3a5d9585 4176 ;; infinite configure loop, see
e9114708 4177 ;; https://bugs.freedesktop.org/show_bug.cgi?id=58812
3a5d9585
AE
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)
3a5d9585
AE
4201 ("libxfixes" ,libxfixes)
4202 ("libxml2" ,libxml2)
4203 ("makedepend" ,makedepend)
4204 ("pkg-config" ,pkg-config)
98e4829c 4205 ("python" ,python-2))) ; incompatible with Python 3 (print syntax)
3a5d9585
AE
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"))
21e9fee0 4215 %standard-phases)))
3a5d9585
AE
4216 (home-page "http://mesa3d.org/")
4217 (synopsis "Mesa, an OpenGL implementation")
4218 (description "Mesa is a free implementation of the OpenGL specification -
4219a system for rendering interactive 3D graphics. A variety of device drivers
4220allows Mesa to be used in many different environments ranging from software
4221emulation 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)
ee3e314b 4251 ("python" ,python-wrapper)))
c8957c77
AE
4252 (arguments
4253 `(#:configure-flags '("--enable-xkb")))
3a5d9585
AE
4254 (home-page "http://www.x.org/wiki/")
4255 (synopsis "xorg implementation of the X Window System")
4256 (description "X.org provides an implementation of the X Window System")
4257 (license license:x11)))
4258
4259
b04ac5a1
AE
4260(define-public xorg-server
4261 (package
4262 (name "xorg-server")
4263 (version "1.12.2")
4264 (source
4265 (origin
4266 (method url-fetch)
4267 (uri (string-append
4268 "mirror://xorg/X11R7.7/src/everything/xorg-server-"
4269 version
4270 ".tar.bz2"))
4271 (sha256
4272 (base32
4273 "1xf57hcq6r17zxyfnx9r1wd0ir1bw13ff8bsiszwrw9jyhi9x7ya"))))
4274 (build-system gnu-build-system)
4275 (propagated-inputs
4276 `(("dri2proto" ,dri2proto)
4277 ("fontsproto" ,fontsproto)
4278 ("inputproto" ,inputproto)
4279 ("kbproto" ,kbproto)
4280 ("libpciaccess" ,libpciaccess)
4281 ("pixman" ,pixman)
4282 ("randrproto" ,randrproto)
4283 ("renderproto" ,renderproto)
4284 ("videoproto" ,videoproto)
4285 ("xextproto" ,xextproto)
4286 ("xineramaproto" ,xineramaproto)
4287 ("xproto" ,xproto)))
4288 (inputs
4289 `(("bigreqsproto" ,bigreqsproto)
4290 ("compositeproto" ,compositeproto)
4291 ("damageproto" ,damageproto)
4292 ("dbus" ,dbus)
4293 ("dmxproto" ,dmxproto)
b04ac5a1 4294 ("libdmx" ,libdmx)
2365338b 4295 ("libgcrypt" ,libgcrypt)
b04ac5a1
AE
4296 ("libxau" ,libxau)
4297 ("libxaw" ,libxaw)
4298 ("libxdmcp" ,libxdmcp)
b04ac5a1
AE
4299 ("libxfixes" ,libxfixes)
4300 ("libxfont" ,libxfont)
4301 ("libxkbfile" ,libxkbfile)
b04ac5a1
AE
4302 ("libxrender" ,libxrender)
4303 ("libxres" ,libxres)
4304 ("libxt" ,libxt)
4305 ("libxv" ,libxv)
4306 ("mesa" ,mesa)
b04ac5a1 4307 ("pkg-config" ,pkg-config)
ee3e314b 4308 ("python" ,python-wrapper)
b04ac5a1
AE
4309 ("recordproto" ,recordproto)
4310 ("resourceproto" ,resourceproto)
4311 ("scrnsaverproto" ,scrnsaverproto)
4312 ("xcmiscproto" ,xcmiscproto)
4313 ("xf86bigfontproto" ,xf86bigfontproto)
4314 ("xf86dgaproto" ,xf86dgaproto)
4315 ("xf86driproto" ,xf86driproto)
4316 ("xf86vidmodeproto" ,xf86vidmodeproto)
2365338b
AE
4317 ("xkbcomp" ,xkbcomp)
4318 ("xkeyboard-config" ,xkeyboard-config)
b04ac5a1
AE
4319 ("xtrans" ,xtrans)
4320 ("zlib" ,zlib)))
2365338b
AE
4321 (arguments
4322 `(#:configure-flags
4323 (list (string-append "--with-xkb-path="
4324 (assoc-ref %build-inputs "xkeyboard-config")
4325 "/share/X11/xkb")
4326 (string-append "--with-xkb-output="
4327 "/tmp") ; FIXME: This is a bit doubtful; where should
4328 ; the compiled keyboard maps go?
4329 (string-append "--with-xkb-bin-directory="
4330 (assoc-ref %build-inputs "xkbcomp")
4331 "/bin"))
4332 #:phases
4333 (alist-replace
4334 'configure
4335 (lambda* (#:key outputs #:allow-other-keys #:rest args)
4336 (let ((configure (assoc-ref %standard-phases 'configure)))
4337 (substitute* (find-files "." "\\.c$")
4338 (("/bin/sh") (which "sh")))
4339 (apply configure args)))
4340 %standard-phases)))
b04ac5a1
AE
4341 (home-page "http://www.x.org/wiki/")
4342 (synopsis "xorg implementation of the X Window System")
4343 (description "X.org provides an implementation of the X Window System")
4344 (license license:x11)))
4345
4346
6eb126c5 4347
6eb126c5
AE
4348;; packages of height 4 in the propagated-inputs tree
4349
4350(define-public libx11
9aea24b6 4351 (package
6eb126c5
AE
4352 (name "libx11")
4353 (version "1.5.0")
9aea24b6
AE
4354 (source
4355 (origin
4356 (method url-fetch)
4357 (uri (string-append
6eb126c5 4358 "mirror://xorg/X11R7.7/src/everything/libX11-"
9aea24b6
AE
4359 version
4360 ".tar.bz2"))
4361 (sha256
4362 (base32
6eb126c5 4363 "11jdpl15bxwpwv0knpkh990s8jvlybng3dx477pkrz1bx7byz0n3"))))
9aea24b6 4364 (build-system gnu-build-system)
6eb126c5
AE
4365 (propagated-inputs
4366 `(("kbproto" ,kbproto)
4367 ("libxcb" ,libxcb)))
9aea24b6 4368 (inputs
6eb126c5 4369 `(("inputproto" ,inputproto)
6eb126c5
AE
4370 ("pkg-config" ,pkg-config)
4371 ("xextproto" ,xextproto)
4372 ("xtrans" ,xtrans)))
5223c826
AE
4373 (home-page "http://www.x.org/wiki/")
4374 (synopsis "xorg implementation of the X Window System")
4375 (description "X.org provides an implementation of the X Window System")
d385b835 4376 (license license:x11)))
5f1d0fb0
AE
4377
4378
6eb126c5
AE
4379;; packages of height 5 in the propagated-inputs tree
4380
4381(define-public libxcursor
9aea24b6 4382 (package
6eb126c5
AE
4383 (name "libxcursor")
4384 (version "1.1.13")
9aea24b6
AE
4385 (source
4386 (origin
4387 (method url-fetch)
4388 (uri (string-append
6eb126c5 4389 "mirror://xorg/X11R7.7/src/everything/libXcursor-"
9aea24b6
AE
4390 version
4391 ".tar.bz2"))
4392 (sha256
4393 (base32
6eb126c5 4394 "13xd1dyb06gwdwb0bxb22fkgdlmis6wrljm2xk6fhz0v9bg2g27p"))))
9aea24b6 4395 (build-system gnu-build-system)
6eb126c5
AE
4396 (propagated-inputs
4397 `(("libx11" ,libx11)
4398 ("libxrender" ,libxrender)
4399 ("libxfixes" ,libxfixes)
4400 ("xproto" ,xproto)))
9aea24b6 4401 (inputs
c7f99931 4402 `(("pkg-config" ,pkg-config)))
5223c826
AE
4403 (home-page "http://www.x.org/wiki/")
4404 (synopsis "xorg implementation of the X Window System")
4405 (description "X.org provides an implementation of the X Window System")
d385b835 4406 (license license:x11)))
5f1d0fb0
AE
4407
4408
6eb126c5 4409(define-public libxt
9aea24b6 4410 (package
6eb126c5
AE
4411 (name "libxt")
4412 (version "1.1.3")
9aea24b6
AE
4413 (source
4414 (origin
4415 (method url-fetch)
4416 (uri (string-append
6eb126c5 4417 "mirror://xorg/X11R7.7/src/everything/libXt-"
9aea24b6
AE
4418 version
4419 ".tar.bz2"))
4420 (sha256
4421 (base32
6eb126c5 4422 "1g85gwnhs7lg5f01gfi1cpb916xc3spm1fjlv2f4xz2zzk1r7dcd"))))
9aea24b6 4423 (build-system gnu-build-system)
6eb126c5
AE
4424 (propagated-inputs
4425 `(("libx11" ,libx11)
4426 ("libice" ,libice)
4427 ("libsm" ,libsm)))
9aea24b6 4428 (inputs
c7f99931 4429 `(("libx11" ,libx11)
9aea24b6 4430 ("pkg-config" ,pkg-config)))
5223c826
AE
4431 (home-page "http://www.x.org/wiki/")
4432 (synopsis "xorg implementation of the X Window System")
4433 (description "X.org provides an implementation of the X Window System")
d385b835 4434 (license license:x11)))
6eb126c5
AE
4435
4436
baa0d82a
LC
4437(define-public libxaw
4438 (package
4439 (name "libxaw")
4440 (version "1.0.11")
4441 (source
4442 (origin
4443 (method url-fetch)
4444 (uri (string-append
4445 "mirror://xorg/X11R7.7/src/everything/libXaw-"
4446 version
4447 ".tar.bz2"))
4448 (sha256
4449 (base32
4450 "14ll7ndf5njc30hz2w197qvwp7fqj7y14wq4p1cyxlbipfn79a47"))))
4451 (build-system gnu-build-system)
4452 (propagated-inputs
4453 `(("libxext" ,libxext)
4454 ("libxmu" ,libxmu)
4455 ("libxpm" ,libxpm)
4456 ("libxt" ,libxt)))
4457 (inputs
4458 `(("xproto" ,xproto)
4459 ("pkg-config" ,pkg-config)))
4460 (home-page "http://www.x.org/wiki/")
4461 (synopsis "xorg implementation of the X Window System")
4462 (description "X.org provides an implementation of the X Window System")
4463 (license license:x11)))
dcc9053a
AE
4464
4465
458b2a76
AE
4466(define-public xcb-util
4467 (package
4468 (name "xcb-util")
4469 (version "0.3.9")
4470 (source (origin
4471 (method url-fetch)
4472 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4473 version ".tar.bz2"))
4474 (sha256
4475 (base32
4476 "1i0qbhqkcdlbbsj7ifkyjsffl61whj24d3zlg5pxf3xj1af2a4f6"))))
4477 (build-system gnu-build-system)
4478 (propagated-inputs
4479 `(("libxcb" ,libxcb)))
4480 (inputs
4481 `(("pkg-config" ,pkg-config)))
4482 (home-page "http://cgit.freedesktop.org/xcb/util/")
4483 (synopsis "Core XCB utility functions")
4484 (description "The XCB util module provides a number of libraries which
4485 sit on top of libxcb, the core X protocol library, and some of the
4486 extension libraries. These experimental libraries provide convenience
4487functions and interfaces which make the raw X protocol more usable. Some of
4488the libraries also provide client-side code which is not strictly part of
4489the X protocol but which has traditionally been provided by Xlib.
4490
4491The XCB util module provides the following libraries:
4492aux: Convenient access to connection setup and some core requests.
4493atom: Standard core X atom constants and atom caching.
4494event: Some utilities that have little to do with events any more.")
4495 (license license:x11)))
4496
4497
dfba4055
AE
4498(define-public xcb-util-image
4499 (package
4500 (name "xcb-util-image")
4501 (version "0.3.9")
4502 (source (origin
4503 (method url-fetch)
4504 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4505 version ".tar.bz2"))
4506 (sha256
4507 (base32
4508 "1pr1l1nkg197gyl9d0fpwmn72jqpxjfgn9y13q4gawg1m873qnnk"))))
4509 (build-system gnu-build-system)
4510 (propagated-inputs
4511 `(("libxcb" ,libxcb)))
4512 (inputs
4513 `(("pkg-config" ,pkg-config)
4514 ("xcb-util" ,xcb-util)))
4515 (home-page "http://cgit.freedesktop.org/xcb/util-image/")
4516 (synopsis "XCB port of Xlib's XImage and XShmImage")
4517 (description "The XCB util module provides a number of libraries which
4518 sit on top of libxcb, the core X protocol library, and some of the
4519 extension libraries. These experimental libraries provide convenience
4520functions and interfaces which make the raw X protocol more usable. Some of
4521the libraries also provide client-side code which is not strictly part of
4522the X protocol but which has traditionally been provided by Xlib.
4523
4524The XCB util-image module provides the following library:
4525image: Port of Xlib's XImage and XShmImage functions.")
4526 (license license:x11)))
4527
4528
f5bf403c
AE
4529(define-public xcb-util-keysyms
4530 (package
4531 (name "xcb-util-keysyms")
4532 (version "0.3.9")
4533 (source (origin
4534 (method url-fetch)
4535 (uri (string-append "http://xcb.freedesktop.org/dist/" name "-"
4536 version ".tar.bz2"))
4537 (sha256
4538 (base32
4539 "0vjwk7vrcfnlhiadv445c6skfxmdrg5v4qf81y8s2s5xagqarqbv"))))
4540 (build-system gnu-build-system)
4541 (propagated-inputs
4542 `(("libxcb" ,libxcb)))
4543 (inputs
4544 `(("pkg-config" ,pkg-config)))
4545 (home-page "http://cgit.freedesktop.org/xcb/util-keysyms/")
4546 (synopsis "Standard X constants and conversion to/from keycodes")
4547 (description "The XCB util module provides a number of libraries which
4548 sit on top of libxcb, the core X protocol library, and some of the
4549 extension libraries. These experimental libraries provide convenience
4550functions and interfaces which make the raw X protocol more usable. Some of
4551the libraries also provide client-side code which is not strictly part of
4552the X protocol but which has traditionally been provided by Xlib.
4553
4554The XCB util-keysyms module provides the following library:
4555keysyms: Standard X key constants and conversion to/from keycodes.")
4556 (license license:x11)))
4557
4558
6ff104d5
AE
4559(define-public xcb-util-wm
4560 (package
4561 (name "xcb-util-wm")
4562 (version "0.3.9")
4563 (source (origin
4564 (method url-fetch)
4565 (uri (string-append "http://xcb.freedesktop.org/dist/xcb-util-wm-"
4566 version ".tar.bz2"))
4567 (sha256
4568 (base32
4569 "0c30fj33gvwzwhyz1dhsfwni0ai16bxpvxb4l6c6s7vvj7drp3q3"))))
4570 (build-system gnu-build-system)
4571 (propagated-inputs
4572 `(("libxcb" ,libxcb)))
4573 (inputs
4574 `(("m4" ,m4)
4575 ("pkg-config" ,pkg-config)))
4576 (home-page "http://cgit.freedesktop.org/xcb/util-wm/")
4577 (synopsis "Client and window-manager helpers for ICCCM and EWMH")
4578 (description "The XCB util modules provides a number of libraries which
4579 sit on top of libxcb, the core X protocol library, and some of the
4580 extension libraries. These experimental libraries provide convenience
4581functions and interfaces which make the raw X protocol more usable. Some of
4582the libraries also provide client-side code which is not strictly part of
458b2a76
AE
4583the X protocol but which has traditionally been provided by Xlib.
4584
4585The XCB util-wm module provides the following libraries:
4586ewmh: Both client and window-manager helpers for EWMH.
4587icccm: Both client and window-manager helpers for ICCCM.")
6ff104d5
AE
4588 (license license:x11)))
4589
4590
dcc9053a
AE
4591;; package outside the x.org system proper of height 5
4592
4593(define-public libxaw3d
4594 (package
4595 (name "libxaw3d")
4596 (version "1.6.2")
4597 (source
4598 (origin
4599 (method url-fetch)
4600 (uri (string-append
4601 "mirror://xorg/individual/lib/libXaw3d-"
4602 version
4603 ".tar.bz2"))
4604 (sha256
4605 (base32
4606 "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
4607 (build-system gnu-build-system)
4608 (propagated-inputs
4609 `(("libxext" ,libxext)
4610 ("libxmu" ,libxmu)
4611 ("libxt" ,libxt)))
4612 (inputs
4613 `(("libx11" ,libx11)
4614 ("pkg-config" ,pkg-config)))
4615 (home-page "http://www.x.org/wiki/")
4616 (synopsis "xorg implementation of the X Window System")
4617 (description "X.org provides an implementation of the X Window System")
4618 (license license:x11)))