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