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