gnu: Add xf86-video-freedreno.
[jackhill/guix/guix.git] / gnu / packages / xorg.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
4 ;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org>
5 ;;; Copyright © 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
8 ;;; Copyright © 2015 Cyrill Schenkel <cyrill.schenkel@gmail.com>
9 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
11 ;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
12 ;;; Copyright © 2016 David Craven <david@craven.ch>
13 ;;; Copyright © 2016, 2017 John Darrington <jmd@gnu.org>
14 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
15 ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
16 ;;;
17 ;;; This file is part of GNU Guix.
18 ;;;
19 ;;; GNU Guix is free software; you can redistribute it and/or modify it
20 ;;; under the terms of the GNU General Public License as published by
21 ;;; the Free Software Foundation; either version 3 of the License, or (at
22 ;;; your option) any later version.
23 ;;;
24 ;;; GNU Guix is distributed in the hope that it will be useful, but
25 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
26 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ;;; GNU General Public License for more details.
28 ;;;
29 ;;; You should have received a copy of the GNU General Public License
30 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
31
32 (define-module (gnu packages xorg)
33 #:use-module ((guix licenses) #:prefix license:)
34 #:use-module (guix packages)
35 #:use-module (guix download)
36 #:use-module (guix git-download)
37 #:use-module (guix build-system gnu)
38 #:use-module (guix build-system perl)
39 #:use-module (guix build-system python)
40 #:use-module (guix utils)
41 #:use-module (gnu packages)
42 #:use-module (gnu packages autotools)
43 #:use-module (gnu packages bison)
44 #:use-module (gnu packages compression)
45 #:use-module (gnu packages flex)
46 #:use-module (gnu packages fontutils)
47 #:use-module (gnu packages freedesktop)
48 #:use-module (gnu packages gettext)
49 #:use-module (gnu packages gl)
50 #:use-module (gnu packages glib)
51 #:use-module (gnu packages gnupg)
52 #:use-module (gnu packages gperf)
53 #:use-module (gnu packages gtk)
54 #:use-module (gnu packages image)
55 #:use-module (gnu packages libbsd)
56 #:use-module (gnu packages linux)
57 #:use-module (gnu packages llvm)
58 #:use-module (gnu packages m4)
59 #:use-module (gnu packages ncurses)
60 #:use-module (gnu packages perl)
61 #:use-module (gnu packages pkg-config)
62 #:use-module (gnu packages python)
63 #:use-module (gnu packages spice)
64 #:use-module (gnu packages video)
65 #:use-module (gnu packages xiph)
66 #:use-module (gnu packages xml)
67 #:use-module (gnu packages xdisorg))
68
69
70
71
72 ;; packages without propagated input
73 ;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
74 ;; be defined first, the split makes book-keeping easier.)
75
76
77 ;; compiles only on macos
78 ;; (define-public applewmproto
79
80
81 (define xorg-cf-files
82 ;; The xorg-cf-files package contains the data files for the imake utility,
83 ;; defining the known settings for a wide variety of platforms (many of which
84 ;; have not been verified or tested in over a decade), and for many of the
85 ;; libraries formerly delivered in the X.Org monolithic releases.
86 ;;
87 ;; License: x11, see COPYING
88 (origin
89 (method url-fetch)
90 (uri "mirror://xorg/individual/util/xorg-cf-files-1.0.5.tar.bz2")
91 (sha256
92 (base32
93 "1m3ypq0xcy46ghxc0svl1rbhpy3zvgmy0aa2mn7w7v7d8d8bh8zd"))))
94
95 (define-public imake
96 (package
97 (name "imake")
98 (version "1.0.7")
99 (source
100 (origin
101 (method url-fetch)
102 (uri (string-append "mirror://xorg/individual/util/imake-"
103 version ".tar.bz2"))
104 (sha256
105 (base32
106 "0zpk8p044jh14bis838shbf4100bjg7mccd7bq54glpsq552q339"))))
107 (build-system gnu-build-system)
108 (native-inputs
109 `(("pkg-config" ,pkg-config)))
110 (inputs
111 `(("xorg-cf-files" ,xorg-cf-files)
112 ("xproto" ,xproto)))
113 (arguments
114 `(#:phases
115 (alist-cons-after
116 'install 'install-data
117 (lambda* (#:key inputs outputs #:allow-other-keys)
118 (let ((cf-files (assoc-ref inputs "xorg-cf-files"))
119 (out (assoc-ref outputs "out"))
120 (unpack (assoc-ref %standard-phases 'unpack))
121 (patch-source-shebangs
122 (assoc-ref %standard-phases 'patch-source-shebangs)))
123 (mkdir "xorg-cf-files")
124 (with-directory-excursion "xorg-cf-files"
125 (apply unpack (list #:source cf-files))
126 (apply patch-source-shebangs (list #:source cf-files))
127 (substitute* '("mingw.cf" "Imake.tmpl" "nto.cf" "os2.cf"
128 "linux.cf" "Amoeba.cf" "cygwin.cf")
129 (("/bin/sh") (which "bash")))
130 (and (zero? (system* "./configure"
131 (string-append "SHELL=" (which "bash"))
132 (string-append "--prefix=" out)))
133 (zero? (system* "make" "install"))))))
134 %standard-phases)))
135 (home-page "http://www.x.org")
136 (synopsis "Source code configuration and build system")
137 (description
138 "Imake is a deprecated source code configuration and build system which
139 has traditionally been supplied by and used to build the X Window System in
140 X11R6 and previous releases. As of the X Window System X11R7 release, the X
141 Window system has switched to using GNU autotools as the primary build system,
142 and the Imake system is now deprecated, and should not be used by new software
143 projects. Software developers are encouraged to migrate software to the GNU
144 autotools system.")
145 (license license:x11)))
146
147 (define-public lndir
148 (package
149 (name "lndir")
150 (version "1.0.3")
151 (source (origin
152 (method url-fetch)
153 (uri (string-append
154 "mirror://xorg/individual/util/"
155 "lndir-" version ".tar.bz2"))
156 (sha256
157 (base32
158 "0pdngiy8zdhsiqx2am75yfcl36l7kd7d7nl0rss8shcdvsqgmx29"))))
159 (build-system gnu-build-system)
160 (native-inputs
161 `(("pkg-config" ,pkg-config)))
162 (inputs
163 `(("xproto" ,xproto)))
164 (home-page "http://www.x.org")
165 (synopsis "Symlink directory into tree")
166 (description "Create a shadow directory of symbolic links to another
167 directory tree.")
168 (license license:x11)))
169
170 (define-public bdftopcf
171 (package
172 (name "bdftopcf")
173 (version "1.0.5")
174 (source
175 (origin
176 (method url-fetch)
177 (uri (string-append
178 "mirror://xorg/individual/app/bdftopcf-"
179 version
180 ".tar.bz2"))
181 (sha256
182 (base32
183 "09i03sk878cmx2i40lkpsysn7zqcvlczb30j7x3lryb11jz4gx1q"))))
184 (build-system gnu-build-system)
185 (inputs
186 `(("libxfont" ,libxfont)))
187 (native-inputs
188 `(("pkg-config" ,pkg-config)))
189 (home-page "https://www.x.org/wiki/")
190 (synopsis "Convert X font from BDF to PCF")
191 (description
192 "BDFtoPCF is a font compiler for the X server and font server. It
193 converts X font from Bitmap Distribution Format to Portable Compiled Format
194 which can be read by any architecture.")
195 (license license:x11)))
196
197
198 (define-public bigreqsproto
199 (package
200 (name "bigreqsproto")
201 (version "1.1.2")
202 (source
203 (origin
204 (method url-fetch)
205 (uri (string-append
206 "mirror://xorg/individual/proto/bigreqsproto-"
207 version
208 ".tar.bz2"))
209 (sha256
210 (base32
211 "07hvfm84scz8zjw14riiln2v4w03jlhp756ypwhq27g48jmic8a6"))))
212 (build-system gnu-build-system)
213 (native-inputs `(("pkg-config" ,pkg-config)))
214 (home-page "https://www.x.org/wiki/")
215 (synopsis "Xorg BigReqsProto protocol headers")
216 (description
217 "Big Requests Extension defines a protocol to enable the use of
218 requests that exceed 262140 bytes in length.")
219 (license license:x11)))
220
221
222 (define-public compositeproto
223 (package
224 (name "compositeproto")
225 (version "0.4.2")
226 (source
227 (origin
228 (method url-fetch)
229 (uri (string-append
230 "mirror://xorg/individual/proto/compositeproto-"
231 version
232 ".tar.bz2"))
233 (sha256
234 (base32
235 "1z0crmf669hirw4s7972mmp8xig80kfndja9h559haqbpvq5k4q4"))))
236 (build-system gnu-build-system)
237 (inputs
238 `(("fixesproto" ,fixesproto)))
239 (native-inputs
240 `(("pkg-config" ,pkg-config)))
241 (home-page "https://www.x.org/wiki/")
242 (synopsis "Xorg CompositeProto protocol headers")
243 (description
244 "Composite Extension contains header files and documentation for
245 the damage protocol.")
246 (license license:x11)))
247
248
249 (define-public damageproto
250 (package
251 (name "damageproto")
252 (version "1.2.1")
253 (source
254 (origin
255 (method url-fetch)
256 (uri (string-append
257 "mirror://xorg/individual/proto/damageproto-"
258 version
259 ".tar.bz2"))
260 (sha256
261 (base32
262 "0nzwr5pv9hg7c21n995pdiv0zqhs91yz3r8rn3aska4ykcp12z2w"))))
263 (build-system gnu-build-system)
264 (native-inputs `(("pkg-config" ,pkg-config)))
265 (home-page "https://www.x.org/wiki/")
266 (synopsis "Xorg DamageProto protocol headers")
267 (description
268 "Damage Extension contains header files and documentation for
269 the damage protocol.")
270 (license license:x11)))
271
272
273 (define-public dmxproto
274 (package
275 (name "dmxproto")
276 (version "2.3.1")
277 (source
278 (origin
279 (method url-fetch)
280 (uri (string-append
281 "mirror://xorg/individual/proto/dmxproto-"
282 version
283 ".tar.bz2"))
284 (sha256
285 (base32
286 "02b5x9dkgajizm8dqyx2w6hmqx3v25l67mgf35nj6sz0lgk52877"))))
287 (build-system gnu-build-system)
288 (native-inputs `(("pkg-config" ,pkg-config)))
289 (home-page "https://www.x.org/wiki/")
290 (synopsis "Xorg DMXProto protocol headers")
291 (description
292 "DMX (Distributed Multihead X) Extension defines a protocol for clients
293 to access a front-end proxy X server that controls multiple back-end X
294 servers making up a large display.")
295 (license license:x11)))
296
297
298 (define-public dri2proto
299 (package
300 (name "dri2proto")
301 (version "2.8")
302 (source
303 (origin
304 (method url-fetch)
305 (uri (string-append
306 "mirror://xorg/individual/proto/dri2proto-"
307 version
308 ".tar.bz2"))
309 (sha256
310 (base32
311 "015az1vfdqmil1yay5nlsmpf6cf7vcbpslxjb72cfkzlvrv59dgr"))))
312 (build-system gnu-build-system)
313 (home-page "https://www.x.org/wiki/")
314 (synopsis "Xorg DRI2Proto protocol headers")
315 (description
316 "Direct Rendering Infrastructure 2 Extension defines a protocol to
317 securely allow user applications to access the video hardware without
318 requiring data to be passed through the X server.")
319 (license license:x11)))
320
321 (define-public dri3proto
322 (package
323 (name "dri3proto")
324 (version "1.0")
325 (source
326 (origin
327 (method url-fetch)
328 (uri (string-append
329 "mirror://xorg/individual/proto/dri3proto-"
330 version
331 ".tar.bz2"))
332 (sha256
333 (base32
334 "0x609xvnl8jky5m8jdklw4nymx3irkv32w99dfd8nl800bblkgh1"))))
335 (build-system gnu-build-system)
336 (home-page "https://www.x.org/wiki/")
337 (synopsis "Xorg DRI3Proto protocol headers")
338 (description
339 "Direct Rendering Infrastructure 3 Extension provides mechanisms to
340 translate between direct rendered buffers and X pixmaps. When combined with
341 the Present extension, a complete direct rendering solution for OpenGL is
342 provided.")
343 (license (license:x11-style "file://dri3proto.h"
344 "See 'dri3proto.h' in the distribution."))))
345
346 (define-public %app-defaults-dir "/lib/X11/app-defaults")
347
348 (define-public editres
349 (package
350 (name "editres")
351 (version "1.0.6")
352 (source
353 (origin
354 (method url-fetch)
355 (uri (string-append
356 "mirror://xorg/individual/app/" name "-"
357 version
358 ".tar.bz2"))
359 (sha256
360 (base32
361 "1w2d5hb5pw9ii2jlf4yjlp899402zfwc8hdkpdr3i1fy1cjd2riv"))))
362 (build-system gnu-build-system)
363 (arguments
364 `(#:configure-flags
365 (list (string-append "--with-appdefaultdir="
366 %output ,%app-defaults-dir))))
367 (inputs
368 `(("libxaw" ,libxaw)
369 ("libxmu" ,libxmu)
370 ("libxt" ,libxt)))
371 (native-inputs
372 `(("pkg-config" ,pkg-config)))
373 (home-page "https://www.x.org/wiki/")
374 (synopsis "Tool to browse and edit X Toolkit resource specifications")
375 (description
376 "Editres is a tool that allows users and application developers to view
377 the full widget hierarchy of any X Toolkit application that speaks the Editres
378 protocol. In addition, editres will help the user construct resource
379 specifications, allow the user to apply the resource to the application and
380 view the results dynamically. Once the user is happy with a resource
381 specification editres will append the resource string to the user's X
382 Resources file.")
383 (license license:x11)))
384
385
386 (define-public encodings
387 (package
388 (name "encodings")
389 (version "1.0.4")
390 (source
391 (origin
392 (method url-fetch)
393 (uri (string-append
394 "mirror://xorg/individual/font/encodings-"
395 version
396 ".tar.bz2"))
397 (sha256
398 (base32
399 "0ffmaw80vmfwdgvdkp6495xgsqszb6s0iira5j0j6pd4i0lk3mnf"))))
400 (build-system gnu-build-system)
401 (inputs
402 `(("mkfontscale" ,mkfontscale)))
403 (native-inputs
404 `(("pkg-config" ,pkg-config)))
405 (home-page "https://www.x.org/wiki/")
406 (synopsis "Xorg font encoding files")
407 (description "Xorg font encoding files.")
408 (license license:public-domain)))
409
410 (define (%xorg-font-origin font version hash)
411 (origin
412 (method url-fetch)
413 (uri (string-append "mirror://xorg/individual/font/" font "-"
414 version ".tar.bz2"))
415 (sha256 hash)
416 (modules '((guix build utils)))
417 (snippet
418 ;; Do not include timestamps in '.pcf.gz' files.
419 '(substitute* "Makefile.in"
420 (("^COMPRESS = (.*)$" _ rest)
421 (string-append "COMPRESS = " (string-trim-right rest)
422 " --no-name\n"))))))
423
424 (define-syntax-rule (xorg-font-origin font version hash)
425 "Expand to the 'origin' form for the given Xorg font package."
426 (%xorg-font-origin font version (base32 hash)))
427
428 (define-public font-adobe100dpi
429 (package
430 (name "font-adobe100dpi")
431 (version "1.0.3")
432 (source (xorg-font-origin
433 "font-adobe-100dpi" version
434 "0m60f5bd0caambrk8ksknb5dks7wzsg7g7xaf0j21jxmx8rq9h5j"))
435 (build-system gnu-build-system)
436 (inputs
437 `(("bdftopcf" ,bdftopcf)
438 ("font-util" ,font-util)
439 ("mkfontdir" ,mkfontdir)))
440 (native-inputs
441 `(("pkg-config" ,pkg-config)))
442 (arguments
443 `(#:configure-flags (list
444 ;; install fonts into subdirectory of package output instead of
445 ;; font-util-?.?.?/share/fonts/X11
446 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
447 (home-page "https://www.x.org/wiki/")
448 (synopsis "Xorg adobe-100dpi fonts")
449 (description "Xorg adobe-100dpi fonts.")
450 (license license:x11)))
451
452
453 (define-public font-adobe75dpi
454 (package
455 (name "font-adobe75dpi")
456 (version "1.0.3")
457 (source (xorg-font-origin
458 "font-adobe-75dpi" version
459 "02advcv9lyxpvrjv8bjh1b797lzg6jvhipclz49z8r8y98g4l0n6"))
460 (build-system gnu-build-system)
461 (inputs
462 `(("bdftopcf" ,bdftopcf)
463 ("font-util" ,font-util)
464 ("mkfontdir" ,mkfontdir)))
465 (native-inputs
466 `(("pkg-config" ,pkg-config)))
467 (arguments
468 `(#:configure-flags (list
469 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
470 (home-page "https://www.x.org/wiki/")
471 (synopsis "Xorg adobe-75dpi fonts")
472 (description "Xorg adobe-75dpi fonts.")
473 (license license:x11)))
474
475
476 ;; non-free license
477 ;; (define-public font-adobe-utopia100dpi
478 ;; (define-public font-adobe-utopia75dpi
479 ;; (define-public font-adobe-utopia-type1
480
481
482 (define-public font-alias
483 (package
484 (name "font-alias")
485 (version "1.0.3")
486 (source (xorg-font-origin
487 name version
488 "16ic8wfwwr3jicaml7b5a0sk6plcgc1kg84w02881yhwmqm3nicb"))
489 (build-system gnu-build-system)
490 (native-inputs `(("pkg-config" ,pkg-config)))
491 (arguments
492 `(#:phases (modify-phases %standard-phases
493 (add-after
494 'install 'install-fonts-dir
495 ;; The X font server will not add directories to the font
496 ;; path unless they contain a "fonts.dir" file, so add some
497 ;; dummy files.
498 (lambda* (#:key outputs #:allow-other-keys)
499 (let ((out (assoc-ref outputs "out")))
500 (for-each (lambda (d)
501 (call-with-output-file
502 (string-append out "/share/fonts/X11"
503 "/" d "/fonts.dir")
504 (lambda (p)
505 (format p "0~%"))))
506 '("75dpi" "100dpi" "misc" "cyrillic"))
507 #t))))))
508 (home-page "https://www.x.org/wiki/")
509 (synopsis "Xorg font aliases")
510 (description
511 "This package provides some common aliases for Xorg fonts.
512 For example: '6x10', '9x15bold', etc.")
513 (license license:x11)))
514
515
516 (define-public font-arabic-misc
517 (package
518 (name "font-arabic-misc")
519 (version "1.0.3")
520 (source (xorg-font-origin
521 name version
522 "1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"))
523 (build-system gnu-build-system)
524 (inputs
525 `(("mkfontdir" ,mkfontdir)
526 ("bdftopcf" ,bdftopcf)))
527 (native-inputs
528 `(("pkg-config" ,pkg-config)))
529 (home-page "https://www.x.org/wiki/")
530 (synopsis "Xorg arabic-misc font")
531 (description "Xorg arabic-misc font.")
532 (license license:x11)))
533
534
535 ;; non-free license
536 ;; (define-public font-bh100dpi
537 ;; (define-public font-bh75dpi
538 ;; (define-public font-bh-lucidatypewriter100dpi
539 ;; (define-public font-bh-lucidatypewriter75dpi
540 ;; (define-public font-bh-ttf
541 ;; (define-public font-bh-type1
542 ;; (define-public font-bitstream100dpi
543 ;; (define-public font-bitstream75dpi
544
545
546 (define-public font-cronyx-cyrillic
547 (package
548 (name "font-cronyx-cyrillic")
549 (version "1.0.3")
550 (source (xorg-font-origin
551 name version
552 "0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"))
553 (build-system gnu-build-system)
554 (inputs
555 `(("mkfontdir" ,mkfontdir)
556 ("bdftopcf" ,bdftopcf)))
557 (native-inputs
558 `(("pkg-config" ,pkg-config)))
559 (home-page "https://www.x.org/wiki/")
560 (synopsis "Xorg cronyx-cyrillic font")
561 (description "Xorg cronyx-cyrillic font.")
562 (license license:x11)))
563
564
565 ;; no license
566 ;; (define-public font-cursor-misc
567
568 ;; non-free license
569 ;; (define-public font-daewoo-misc
570
571
572 (define-public font-dec-misc
573 (package
574 (name "font-dec-misc")
575 (version "1.0.3")
576 (source (xorg-font-origin
577 name version
578 "0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"))
579 (build-system gnu-build-system)
580 (inputs
581 `(("mkfontdir" ,mkfontdir)
582 ("bdftopcf" ,bdftopcf)))
583 (native-inputs
584 `(("pkg-config" ,pkg-config)))
585 (home-page "https://www.x.org/wiki/")
586 (synopsis "Xorg dec-misc font")
587 (description "Xorg dec-misc font.")
588 (license license:x11)))
589
590
591 ;; non-free license
592 ;; (define-public font-ibm-type1
593
594 (define-public font-isas-misc
595 (package
596 (name "font-isas-misc")
597 (version "1.0.3")
598 (source (xorg-font-origin
599 name version
600 "0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"))
601 (build-system gnu-build-system)
602 (inputs
603 `(("mkfontdir" ,mkfontdir)
604 ("bdftopcf" ,bdftopcf)))
605 (native-inputs
606 `(("pkg-config" ,pkg-config)))
607 (home-page "https://www.x.org/wiki/")
608 (synopsis "Xorg isas-misc font")
609 (description "Xorg isas-misc font.")
610 (license license:x11)))
611
612
613 ;; non-free license
614 ;; (define-public font-jis-misc
615
616
617 (define-public font-micro-misc
618 (package
619 (name "font-micro-misc")
620 (version "1.0.3")
621 (source (xorg-font-origin
622 name version
623 "1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"))
624 (build-system gnu-build-system)
625 (inputs
626 `(("mkfontdir" ,mkfontdir)
627 ("bdftopcf" ,bdftopcf)))
628 (native-inputs
629 `(("pkg-config" ,pkg-config)))
630 (home-page "https://www.x.org/wiki/")
631 (synopsis "Xorg micro-misc font")
632 (description "Xorg micro-misc font.")
633 (license license:public-domain)))
634
635
636 (define-public font-misc-cyrillic
637 (package
638 (name "font-misc-cyrillic")
639 (version "1.0.3")
640 (source (xorg-font-origin
641 name version
642 "0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"))
643 (build-system gnu-build-system)
644 (inputs
645 `(("mkfontdir" ,mkfontdir)
646 ("bdftopcf" ,bdftopcf)))
647 (native-inputs
648 `(("pkg-config" ,pkg-config)))
649 (home-page "https://www.x.org/wiki/")
650 (synopsis "Xorg misc-cyrillic fonts")
651 (description "Xorg misc-cyrillic fonts.")
652 (license license:x11)))
653
654
655 (define-public font-misc-ethiopic
656 (package
657 (name "font-misc-ethiopic")
658 (version "1.0.3")
659 (source (xorg-font-origin
660 name version
661 "19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"))
662 (build-system gnu-build-system)
663 (inputs
664 `(("mkfontdir" ,mkfontdir)
665 ("mkfontscale" ,mkfontscale)))
666 (native-inputs
667 `(("pkg-config" ,pkg-config)))
668 (home-page "https://www.x.org/wiki/")
669 (synopsis "Xorg misc-ethiopic fonts")
670 (description "Xorg misc-ethiopic fonts.")
671 (license license:x11)))
672
673
674 ;; non-free license
675 ;; (define-public font-misc-meltho
676
677
678 (define-public font-misc-misc
679 (package
680 (name "font-misc-misc")
681 (version "1.1.2")
682 (source (xorg-font-origin
683 name version
684 "150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"))
685 (build-system gnu-build-system)
686 (inputs
687 `(("mkfontdir" ,mkfontdir)
688 ("font-util" ,font-util)
689 ("bdftopcf" ,bdftopcf)))
690 (native-inputs
691 `(("pkg-config" ,pkg-config)))
692 (arguments
693 `(#:configure-flags (list
694 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
695 (home-page "https://www.x.org/wiki/")
696 (synopsis "Xorg misc-misc fonts")
697 (description "Xorg misc-misc fixed fonts.")
698 (license license:public-domain)))
699
700
701 (define-public font-mutt-misc
702 (package
703 (name "font-mutt-misc")
704 (version "1.0.3")
705 (source (xorg-font-origin
706 name version
707 "13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"))
708 (build-system gnu-build-system)
709 (inputs
710 `(("mkfontdir" ,mkfontdir)
711 ("bdftopcf" ,bdftopcf)))
712 (native-inputs
713 `(("pkg-config" ,pkg-config)))
714 (home-page "https://www.x.org/wiki/")
715 (synopsis "Xorg mutt-misc fonts")
716 (description "Xorg mutt-misc fonts.")
717 (license license:x11)))
718
719
720 (define-public font-schumacher-misc
721 (package
722 (name "font-schumacher-misc")
723 (version "1.1.2")
724 (source (xorg-font-origin
725 name version
726 "0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"))
727 (build-system gnu-build-system)
728 (inputs
729 `(("mkfontdir" ,mkfontdir)
730 ("font-util" ,font-util)
731 ("bdftopcf" ,bdftopcf)))
732 (native-inputs
733 `(("pkg-config" ,pkg-config)))
734 (arguments
735 `(#:configure-flags (list
736 (string-append "--with-fontrootdir=" %output "/share/fonts/X11"))))
737 (home-page "https://www.x.org/wiki/")
738 (synopsis "Xorg schumacher-misc fonts")
739 (description "Xorg schumacher-misc fonts.")
740 (license license:x11)))
741
742
743 (define-public font-screen-cyrillic
744 (package
745 (name "font-screen-cyrillic")
746 (version "1.0.4")
747 (source (xorg-font-origin
748 name version
749 "0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"))
750 (build-system gnu-build-system)
751 (inputs
752 `(("mkfontdir" ,mkfontdir)
753 ("bdftopcf" ,bdftopcf)))
754 (native-inputs
755 `(("pkg-config" ,pkg-config)))
756 (home-page "https://www.x.org/wiki/")
757 (synopsis "Xorg screen-cyrillic fonts")
758 (description "Xorg screen-cyrillic fonts.")
759 (license license:x11)))
760
761
762 (define-public font-sony-misc
763 (package
764 (name "font-sony-misc")
765 (version "1.0.3")
766 (source (xorg-font-origin
767 name version
768 "1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"))
769 (build-system gnu-build-system)
770 (inputs
771 `(("mkfontdir" ,mkfontdir)
772 ("bdftopcf" ,bdftopcf)))
773 (native-inputs
774 `(("pkg-config" ,pkg-config)))
775 (home-page "https://www.x.org/wiki/")
776 (synopsis "Xorg sony-misc fonts")
777 (description "Xorg sony-misc fonts.")
778 (license license:x11)))
779
780
781 (define-public font-sun-misc
782 (package
783 (name "font-sun-misc")
784 (version "1.0.3")
785 (source (xorg-font-origin
786 name version
787 "1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"))
788 (build-system gnu-build-system)
789 (inputs
790 `(("mkfontdir" ,mkfontdir)
791 ("bdftopcf" ,bdftopcf)))
792 (native-inputs
793 `(("pkg-config" ,pkg-config)))
794 (home-page "https://www.x.org/wiki/")
795 (synopsis "Xorg sun-misc fonts")
796 (description "Xorg sun-misc fonts.")
797 (license license:x11)))
798
799
800 (define-public font-util
801 (package
802 (name "font-util")
803 (version "1.3.1")
804 (source
805 (origin
806 (method url-fetch)
807 (uri (string-append
808 "mirror://xorg/individual/font/font-util-"
809 version
810 ".tar.bz2"))
811 (sha256
812 (base32
813 "08drjb6cf84pf5ysghjpb4i7xkd2p86k3wl2a0jxs1jif6qbszma"))))
814 (build-system gnu-build-system)
815 (native-inputs `(("pkg-config" ,pkg-config)))
816 (home-page "https://www.x.org/wiki/")
817 (synopsis "Xorg font utilities")
818 (description
819 "Xorg font package creation/installation utilities.")
820 (license license:x11)))
821
822
823 (define-public font-winitzki-cyrillic
824 (package
825 (name "font-winitzki-cyrillic")
826 (version "1.0.3")
827 (source (xorg-font-origin
828 name version
829 "181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"))
830 (build-system gnu-build-system)
831 (inputs
832 `(("mkfontdir" ,mkfontdir)
833 ("bdftopcf" ,bdftopcf)))
834 (native-inputs
835 `(("pkg-config" ,pkg-config)))
836 (home-page "https://www.x.org/wiki/")
837 (synopsis "Xorg winitzki-cyrillic font")
838 (description "Xorg winitzki-cyrillic font.")
839 (license license:public-domain)))
840
841
842 (define-public font-xfree86-type1
843 (package
844 (name "font-xfree86-type1")
845 (version "1.0.4")
846 (source (xorg-font-origin
847 name version
848 "0jp3zc0qfdaqfkgzrb44vi9vi0a8ygb35wp082yz7rvvxhmg9sya"))
849 (build-system gnu-build-system)
850 (inputs
851 `(("mkfontdir" ,mkfontdir)
852 ("mkfontscale" ,mkfontscale)))
853 (native-inputs
854 `(("pkg-config" ,pkg-config)))
855 (home-page "https://www.x.org/wiki/")
856 (synopsis "Xorg xfree86-type1 font")
857 (description "Xorg xfree86-type1 font.")
858 (license license:x11)))
859
860
861 (define-public fontsproto
862 (package
863 (name "fontsproto")
864 (version "2.1.3")
865 (source
866 (origin
867 (method url-fetch)
868 (uri (string-append
869 "mirror://xorg/individual/proto/fontsproto-"
870 version
871 ".tar.bz2"))
872 (sha256
873 (base32
874 "1f2sdsd74y34nnaf4m1zlcbhyv8xb6irnisc99f84c4ivnq4d415"))))
875 (build-system gnu-build-system)
876 (native-inputs `(("pkg-config" ,pkg-config)))
877 (home-page "https://www.x.org/wiki/")
878 (synopsis "Xorg FontsProto protocol headers")
879 (description
880 "Fonts Extension contains header files and documentation for
881 the fonts protocol.")
882 (license license:x11)))
883
884
885 (define-public glproto
886 (package
887 (name "glproto")
888 (version "1.4.17")
889 (source
890 (origin
891 (method url-fetch)
892 (uri (string-append
893 "mirror://xorg/individual/proto/glproto-"
894 version
895 ".tar.bz2"))
896 (sha256
897 (base32
898 "0h5ykmcddwid5qj6sbrszgkcypwn3mslvswxpgy2n2iixnyr9amd"))))
899 (build-system gnu-build-system)
900 (native-inputs `(("pkg-config" ,pkg-config)))
901 (home-page "https://www.x.org/wiki/")
902 (synopsis "Xorg GLProto protocol headers")
903 (description
904 "OpenGL Extension defines a protocol for the client to send 3D
905 rendering commands to the X server.")
906 (license license:x11)))
907
908
909 (define-public iceauth
910 (package
911 (name "iceauth")
912 (version "1.0.7")
913 (source
914 (origin
915 (method url-fetch)
916 (uri (string-append
917 "mirror://xorg/individual/app/iceauth-"
918 version
919 ".tar.bz2"))
920 (sha256
921 (base32
922 "02izdyzhwpgiyjd8brzilwvwnfr72ncjb6mzz3y1icwrxqnsy5hj"))))
923 (build-system gnu-build-system)
924 (inputs
925 `(("libice" ,libice)))
926 (native-inputs
927 `(("pkg-config" ,pkg-config)))
928 (home-page "https://www.x.org/wiki/")
929 (synopsis "ICE authority file utility")
930 (description
931 "ICEAuth program is used to edit and display the authorization
932 information used in connecting with ICE (Inter-Client Exchange). It
933 operates very much like the xauth program for X11 connection
934 authentication records.")
935 (license license:x11)))
936
937
938 (define-public inputproto
939 (package
940 (name "inputproto")
941 (version "2.3.2")
942 (source
943 (origin
944 (method url-fetch)
945 (uri (string-append
946 "mirror://xorg/individual/proto/inputproto-"
947 version
948 ".tar.bz2"))
949 (sha256
950 (base32
951 "07gk7v006zqn3dcfh16l06gnccy7xnqywf3vl9c209ikazsnlfl9"))))
952 (build-system gnu-build-system)
953 (native-inputs `(("pkg-config" ,pkg-config)))
954 (home-page "https://www.x.org/wiki/")
955 (synopsis "Xorg InputProto protocol headers")
956 (description
957 "Input Extension defines a protocol to provide additional input
958 devices management such as graphic tablets.")
959 (license license:x11)))
960
961
962 (define-public kbproto
963 (package
964 (name "kbproto")
965 (version "1.0.7")
966 (source
967 (origin
968 (method url-fetch)
969 (uri (string-append
970 "mirror://xorg/individual/proto/kbproto-"
971 version
972 ".tar.bz2"))
973 (sha256
974 (base32
975 "0mxqj1pzhjpz9495vrjnpi10kv2n1s4vs7di0sh3yvipfq5j30pq"))))
976 (build-system gnu-build-system)
977 (native-inputs `(("pkg-config" ,pkg-config)))
978 (home-page "https://www.x.org/wiki/")
979 (synopsis "Xorg KBProto protocol headers")
980 (description
981 "X Keyboard (XKB) Extension defines a protocol to provide a number
982 of new capabilities and controls for text keyboards.")
983 (license license:x11)))
984
985
986 ;; requires applewmproto, which compiles only on macos
987 ;; (define-public libapplewm
988
989
990 (define-public libdmx
991 (package
992 (name "libdmx")
993 (version "1.1.3")
994 (source
995 (origin
996 (method url-fetch)
997 (uri (string-append
998 "mirror://xorg/individual/lib/libdmx-"
999 version
1000 ".tar.bz2"))
1001 (sha256
1002 (base32
1003 "00djlxas38kbsrglcmwmxfbmxjdchlbj95pqwjvdg8jn5rns6zf9"))))
1004 (build-system gnu-build-system)
1005 (inputs
1006 `(("xextproto" ,xextproto)
1007 ("libxext" ,libxext)
1008 ("libx11" ,libx11)
1009 ("dmxproto" ,dmxproto)))
1010 (native-inputs
1011 `(("pkg-config" ,pkg-config)))
1012 (home-page "https://www.x.org/wiki/")
1013 (synopsis "Xorg DMX library")
1014 (description
1015 "DMX (Distributed Multihead X) extension library.")
1016 (license license:x11)))
1017
1018
1019 (define-public libxshmfence
1020 (package
1021 (name "libxshmfence")
1022 (version "1.2")
1023 (source (origin
1024 (method url-fetch)
1025 (uri (string-append
1026 "mirror://xorg/individual/lib/"
1027 name "-" version ".tar.bz2"))
1028 (sha256
1029 (base32
1030 "032b0nlkdrpbimdld4gqvhqx53rzn8fawvf1ybhzn7lcswgjs6yj"))))
1031 (build-system gnu-build-system)
1032 (native-inputs `(("pkg-config" ,pkg-config)))
1033 (inputs `(("xproto" ,xproto)))
1034 (home-page "http://xorg.freedesktop.org")
1035 (synopsis "Xorg shared memory fences library")
1036 (description
1037 "This library provides an interface to shared-memory fences for
1038 synchronization between the X server and direct-rendering clients.")
1039
1040 ;; Same license as libevdev.
1041 (license (license:x11-style "file://COPYING"))))
1042
1043
1044 (define-public libfontenc
1045 (package
1046 (name "libfontenc")
1047 (version "1.1.3")
1048 (source
1049 (origin
1050 (method url-fetch)
1051 (uri (string-append
1052 "mirror://xorg/individual/lib/libfontenc-"
1053 version
1054 ".tar.bz2"))
1055 (sha256
1056 (base32
1057 "08gxmrhgw97mv0pvkfmd46zzxrn6zdw4g27073zl55gwwqq8jn3h"))))
1058 (build-system gnu-build-system)
1059 (inputs
1060 `(("zlib" ,zlib)
1061 ("xproto" ,xproto)))
1062 (native-inputs
1063 `(("pkg-config" ,pkg-config)))
1064 (home-page "https://www.x.org/wiki/")
1065 (synopsis "Xorg font encoding library")
1066 (description "Xorg font encoding library.")
1067 (license license:x11)))
1068
1069
1070 (define-public libfs
1071 (package
1072 (name "libfs")
1073 (version "1.0.7")
1074 (source
1075 (origin
1076 (method url-fetch)
1077 (uri (string-append
1078 "mirror://xorg/individual/lib/libFS-"
1079 version
1080 ".tar.bz2"))
1081 (sha256
1082 (base32
1083 "1wy4km3qwwajbyl8y9pka0zwizn7d9pfiyjgzba02x3a083lr79f"))))
1084 (build-system gnu-build-system)
1085 (inputs
1086 `(("xtrans" ,xtrans)
1087 ("xproto" ,xproto)
1088 ("fontsproto" ,fontsproto)))
1089 (native-inputs
1090 `(("pkg-config" ,pkg-config)))
1091 (home-page "https://www.x.org/wiki/")
1092 (synopsis "Xorg Font Service client library")
1093 (description
1094 "Font Service client library is used by clients of X Font
1095 Servers (xfs), such as xfsinfo, fslsfonts, and the X servers
1096 themselves.")
1097 (license license:x11)))
1098
1099
1100 (define-public libpciaccess
1101 (package
1102 (name "libpciaccess")
1103 (version "0.13.5")
1104 (source
1105 (origin
1106 (method url-fetch)
1107 (uri (string-append
1108 "mirror://xorg/individual/lib/libpciaccess-"
1109 version
1110 ".tar.bz2"))
1111 (sha256
1112 (base32
1113 "16dr80rdw5bzdyhahvilfjrflj7scs2yl2mmghsb84f3nglm8b3m"))))
1114 (build-system gnu-build-system)
1115 (inputs
1116 `(("zlib" ,zlib)))
1117 (native-inputs
1118 `(("pkg-config" ,pkg-config)))
1119 (home-page "https://www.x.org/wiki/")
1120 (synopsis "Xorg PCI access library")
1121 (description "Xorg Generic PCI access library.")
1122 (license license:x11)))
1123
1124
1125 (define-public libpthread-stubs
1126 (package
1127 (name "libpthread-stubs")
1128 (version "0.3")
1129 (source
1130 (origin
1131 (method url-fetch)
1132 (uri (string-append
1133 "mirror://xorg/individual/xcb/libpthread-stubs-"
1134 version
1135 ".tar.bz2"))
1136 (sha256
1137 (base32
1138 "16bjv3in19l84hbri41iayvvg4ls9gv1ma0x0qlbmwy67i7dbdim"))))
1139 (build-system gnu-build-system)
1140 (native-inputs `(("pkg-config" ,pkg-config)))
1141 (home-page "https://www.x.org/wiki/")
1142 (synopsis "Library with pthread stubs")
1143 (description
1144 "This library provides weak aliases for pthread functions not
1145 provided in libc or otherwise available by default. Libraries like
1146 libxcb rely on pthread stubs to use pthreads optionally, becoming
1147 thread-safe when linked to libpthread, while avoiding any performance
1148 hit when running single-threaded.")
1149 (license license:x11)))
1150
1151
1152 (define-public libsm
1153 (package
1154 (name "libsm")
1155 (version "1.2.2")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (string-append
1160 "mirror://xorg/individual/lib/libSM-"
1161 version
1162 ".tar.bz2"))
1163 (sha256
1164 (base32
1165 "1gc7wavgs435g9qkp9jw4lhmaiq6ip9llv49f054ad6ryp4sib0b"))))
1166 (build-system gnu-build-system)
1167 (propagated-inputs
1168 `(("libice" ,libice))) ; SMlib.h includes ICElib.h
1169 (inputs
1170 `(("xtrans" ,xtrans)
1171 ("util-linux" ,util-linux)))
1172 (native-inputs
1173 `(("pkg-config" ,pkg-config)))
1174 (home-page "https://www.x.org/wiki/")
1175 (synopsis "Xorg Session Management library")
1176 (description "Xorg Session Management library.")
1177 (license license:x11)))
1178
1179
1180 (define-public libwindowswm
1181 (package
1182 (name "libwindowswm")
1183 (version "1.0.1")
1184 (source
1185 (origin
1186 (method url-fetch)
1187 (uri (string-append
1188 "mirror://xorg/individual/lib/libWindowsWM-"
1189 version
1190 ".tar.bz2"))
1191 (sha256
1192 (base32
1193 "1p0flwb67xawyv6yhri9w17m1i4lji5qnd0gq8v1vsfb8zw7rw15"))))
1194 (build-system gnu-build-system)
1195 (inputs
1196 `(("xextproto" ,xextproto)
1197 ("libxext" ,libxext)
1198 ("libx11" ,libx11)
1199 ("windowswmproto" ,windowswmproto)))
1200 (native-inputs
1201 `(("pkg-config" ,pkg-config)))
1202 (home-page "https://www.x.org/wiki/")
1203 (synopsis "Xorg WindowsWM library")
1204 (description
1205 "Cygwin/X rootless window management extension.
1206 WindowsWM is a simple library designed to interface with the Windows-WM
1207 extension. This extension allows X window managers to better interact
1208 with the Cygwin XWin server when running X11 in a rootless mode.")
1209 (license license:x11)))
1210
1211
1212 (define-public libxcomposite
1213 (package
1214 (name "libxcomposite")
1215 (version "0.4.4")
1216 (source
1217 (origin
1218 (method url-fetch)
1219 (uri (string-append
1220 "mirror://xorg/individual/lib/libXcomposite-"
1221 version
1222 ".tar.bz2"))
1223 (sha256
1224 (base32
1225 "0y21nfpa5s8qmx0srdlilyndas3sgl0c6rc26d5fx2vx436m1qpd"))))
1226 (build-system gnu-build-system)
1227 (propagated-inputs
1228 ;; xcomposite.pc refers to all these.
1229 `(("xproto" ,xproto)
1230 ("libxfixes" ,libxfixes)
1231 ("libx11" ,libx11)
1232 ("compositeproto" ,compositeproto)))
1233 (native-inputs
1234 `(("pkg-config" ,pkg-config)))
1235 (home-page "https://www.x.org/wiki/")
1236 (synopsis "Xorg Composite library")
1237 (description
1238 "Client library for the Composite extension to the X11 protocol.")
1239 (license license:x11)))
1240
1241
1242 (define-public libxdmcp
1243 (package
1244 (name "libxdmcp")
1245 (version "1.1.2")
1246 (source
1247 (origin
1248 (method url-fetch)
1249 (uri (string-append
1250 "mirror://xorg/individual/lib/libXdmcp-"
1251 version
1252 ".tar.bz2"))
1253 (sha256
1254 (base32
1255 "1qp4yhxbfnpj34swa0fj635kkihdkwaiw7kf55cg5zqqg630kzl1"))))
1256 (build-system gnu-build-system)
1257 (inputs
1258 `(("libbsd" ,libbsd)
1259 ("xproto" ,xproto)))
1260 (native-inputs
1261 `(("pkg-config" ,pkg-config)))
1262 (home-page "https://www.x.org/wiki/")
1263 (synopsis "Xorg Display Manager Control Protocol library")
1264 (description "Xorg Display Manager Control Protocol library.")
1265 (license license:x11)))
1266
1267
1268 (define-public libxft
1269 (package
1270 (name "libxft")
1271 (version "2.3.2")
1272 (source
1273 (origin
1274 (method url-fetch)
1275 (uri (string-append
1276 "mirror://xorg/individual/lib/libXft-"
1277 version
1278 ".tar.bz2"))
1279 (sha256
1280 (base32
1281 "0k6wzi5rzs0d0n338ms8n8lfyhq914hw4yl2j7553wqxfqjci8zm"))))
1282 (build-system gnu-build-system)
1283 (propagated-inputs
1284 ;; xft.pc refers to all these.
1285 `(("libxrender" ,libxrender)
1286 ("freetype" ,freetype)
1287 ("fontconfig" ,fontconfig)))
1288 (inputs
1289 `(("libx11" ,libx11)
1290 ("xproto" ,xproto)))
1291 (native-inputs
1292 `(("pkg-config" ,pkg-config)))
1293 (home-page "https://www.x.org/wiki/")
1294 (synopsis "Xorg FreeType library")
1295 (description
1296 "Xorg FreeType library connects X applications with the FreeType font
1297 rasterization library. Xft uses fontconfig to locate fonts so it has no
1298 configuration files.")
1299 (license license:x11)))
1300
1301
1302 (define-public libxkbfile
1303 (package
1304 (name "libxkbfile")
1305 (version "1.0.9")
1306 (source
1307 (origin
1308 (method url-fetch)
1309 (uri (string-append
1310 "mirror://xorg/individual/lib/libxkbfile-"
1311 version
1312 ".tar.bz2"))
1313 (sha256
1314 (base32
1315 "0smimr14zvail7ar68n7spvpblpdnih3jxrva7cpa6cn602px0ai"))))
1316 (build-system gnu-build-system)
1317 (inputs
1318 `(("libx11" ,libx11)))
1319 (native-inputs
1320 `(("pkg-config" ,pkg-config)))
1321 (home-page "https://www.x.org/wiki/")
1322 (synopsis "Xorg XKB file handling library")
1323 (description "Xorg XKB file handling library.")
1324 (license license:x11)))
1325
1326
1327 (define-public libxmu
1328 (package
1329 (name "libxmu")
1330 (version "1.1.2")
1331 (source
1332 (origin
1333 (method url-fetch)
1334 (uri (string-append
1335 "mirror://xorg/individual/lib/libXmu-"
1336 version
1337 ".tar.bz2"))
1338 (sha256
1339 (base32
1340 "02wx6jw7i0q5qwx87yf94fsn3h0xpz1k7dz1nkwfwm1j71ydqvkm"))))
1341 (build-system gnu-build-system)
1342 (inputs
1343 `(("libxt" ,libxt)
1344 ("xproto" ,xproto)
1345 ("libxext" ,libxext)))
1346 (native-inputs
1347 `(("pkg-config" ,pkg-config)))
1348 (home-page "https://www.x.org/wiki/")
1349 (synopsis "Xorg Xmu library")
1350 (description
1351 "Xmu library contains miscellaneous utilities and is not part of the
1352 Xlib standard. It is intended to support clients in the Xorg distribution;
1353 vendors may choose not to distribute this library if they wish. Therefore,
1354 applications developers who depend on this library should be prepared to
1355 treat it as part of their software base when porting.")
1356 (license license:x11)))
1357
1358
1359 (define-public libxpm
1360 (package
1361 (name "libxpm")
1362 (version "3.5.12")
1363 (source
1364 (origin
1365 (method url-fetch)
1366 (uri (string-append
1367 "mirror://xorg/individual/lib/libXpm-"
1368 version
1369 ".tar.bz2"))
1370 (sha256
1371 (base32
1372 "1v5xaiw4zlhxspvx76y3hq4wpxv7mpj6parqnwdqvpj8vbinsspx"))))
1373 (build-system gnu-build-system)
1374 (inputs
1375 `(("gettext" ,gettext-minimal)
1376 ("libxt" ,libxt)
1377 ("xproto" ,xproto)
1378 ("libxext" ,libxext)))
1379 (native-inputs
1380 `(("pkg-config" ,pkg-config)))
1381 (home-page "https://www.x.org/wiki/")
1382 (synopsis "Xorg XPM library")
1383 (description "XPM (X Pixmap) image file format library.")
1384 (license license:x11)))
1385
1386
1387 (define-public libxres
1388 (package
1389 (name "libxres")
1390 (version "1.0.7")
1391 (source
1392 (origin
1393 (method url-fetch)
1394 (uri (string-append
1395 "mirror://xorg/individual/lib/libXres-"
1396 version
1397 ".tar.bz2"))
1398 (sha256
1399 (base32
1400 "1rd0bzn67cpb2qkc946gch2183r4bdjfhs6cpqbipy47m9a91296"))))
1401 (build-system gnu-build-system)
1402 (inputs
1403 `(("xproto" ,xproto)
1404 ("libxext" ,libxext)
1405 ("libx11" ,libx11)
1406 ("resourceproto" ,resourceproto)))
1407 (native-inputs
1408 `(("pkg-config" ,pkg-config)))
1409 (home-page "https://www.x.org/wiki/")
1410 (synopsis "Xorg Resource extension library")
1411 (description "X Resource extension library.")
1412 (license license:x11)))
1413
1414
1415 (define-public libxscrnsaver
1416 (package
1417 (name "libxscrnsaver")
1418 (version "1.2.2")
1419 (source
1420 (origin
1421 (method url-fetch)
1422 (uri (string-append
1423 "mirror://xorg/individual/lib/libXScrnSaver-"
1424 version
1425 ".tar.bz2"))
1426 (sha256
1427 (base32
1428 "07ff4r20nkkrj7h08f9fwamds9b3imj8jz5iz6y38zqw6jkyzwcg"))))
1429 (build-system gnu-build-system)
1430 (inputs
1431 `(("libxext" ,libxext)
1432 ("libx11" ,libx11)))
1433 (propagated-inputs
1434 `(("scrnsaverproto" ,scrnsaverproto)))
1435 (native-inputs
1436 `(("pkg-config" ,pkg-config)))
1437 (home-page "https://www.x.org/wiki/")
1438 (synopsis "Xorg Screen Saver library")
1439 (description "X11 Screen Saver extension client library.")
1440 (license license:x11)))
1441
1442
1443 (define-public libxxf86dga
1444 (package
1445 (name "libxxf86dga")
1446 (version "1.1.4")
1447 (source
1448 (origin
1449 (method url-fetch)
1450 (uri (string-append
1451 "mirror://xorg/individual/lib/libXxf86dga-"
1452 version
1453 ".tar.bz2"))
1454 (sha256
1455 (base32
1456 "0zn7aqj8x0951d8zb2h2andldvwkzbsc4cs7q023g6nzq6vd9v4f"))))
1457 (build-system gnu-build-system)
1458 (propagated-inputs
1459 `(("xf86dgaproto" ,xf86dgaproto)))
1460 (inputs
1461 `(("libx11" ,libx11)
1462 ("libxext" ,libxext)))
1463 (native-inputs
1464 `(("pkg-config" ,pkg-config)))
1465 (home-page "https://www.x.org/wiki/")
1466 (synopsis "Xorg XFree86-DGA library")
1467 (description "Client library for the XFree86-DGA extension.")
1468 (license license:x11)))
1469
1470
1471 (define-public luit
1472 (package
1473 (name "luit")
1474 (version "1.1.1")
1475 (source
1476 (origin
1477 (method url-fetch)
1478 (uri (string-append
1479 "mirror://xorg/individual/app/luit-"
1480 version
1481 ".tar.bz2"))
1482 (sha256
1483 (base32
1484 "0dn694mk56x6hdk6y9ylx4f128h5jcin278gnw2gb807rf3ygc1h"))
1485 ;; See https://bugs.freedesktop.org/show_bug.cgi?id=47792;
1486 ;; should become obsolete with the next release.
1487 (patches (search-patches "luit-posix.patch"))))
1488 (build-system gnu-build-system)
1489 (inputs
1490 `(("libfontenc" ,libfontenc)))
1491 (native-inputs
1492 `(("pkg-config" ,pkg-config)))
1493 (home-page "https://www.x.org/wiki/")
1494 (synopsis "Convert terminal I/O from legacy encodings to UTF-8")
1495 (description
1496 "Luit is a filter that can be run between an arbitrary application and
1497 a UTF-8 terminal emulator such as xterm. It will convert application
1498 output from the locale's encoding into UTF-8, and convert terminal
1499 input from UTF-8 into the locale's encoding.")
1500 (license license:x11)))
1501
1502
1503 (define-public makedepend
1504 (package
1505 (name "makedepend")
1506 (version "1.0.5")
1507 (source
1508 (origin
1509 (method url-fetch)
1510 (uri (string-append
1511 "mirror://xorg/individual/util/makedepend-"
1512 version
1513 ".tar.bz2"))
1514 (sha256
1515 (base32
1516 "09alw99r6y2bbd1dc786n3jfgv4j520apblyn7cw6jkjydshba7p"))))
1517 (build-system gnu-build-system)
1518 (inputs
1519 `(("xproto" ,xproto)))
1520 (native-inputs `(("pkg-config" ,pkg-config)))
1521 (home-page "https://www.x.org/wiki/")
1522 (synopsis "Xorg makedepend utility")
1523 (description
1524 "Makedepend is an utility for creating dependencies in makefiles.")
1525 (license license:x11)))
1526
1527
1528 (define-public mkfontscale
1529 (package
1530 (name "mkfontscale")
1531 (version "1.1.2")
1532 (source
1533 (origin
1534 (method url-fetch)
1535 (uri (string-append
1536 "mirror://xorg/individual/app/mkfontscale-"
1537 version
1538 ".tar.bz2"))
1539 (sha256
1540 (base32
1541 "081z8lwh9c1gyrx3ad12whnpv3jpfbqsc366mswpfm48mwl54vcc"))))
1542 (build-system gnu-build-system)
1543 (inputs
1544 `(("zlib" ,zlib)
1545 ("xproto" ,xproto)
1546 ("freetype" ,freetype)
1547 ("libfontenc" ,libfontenc)))
1548 (native-inputs
1549 `(("pkg-config" ,pkg-config)))
1550 (home-page "https://www.x.org/wiki/")
1551 (synopsis "Create an index of scalable font files for X server")
1552 (description
1553 "MkFontScale creates the 'fonts.scale' and 'fonts.dir' index files used
1554 by the legacy X11 font system.")
1555 (license license:x11)))
1556
1557
1558 (define-public presentproto
1559 (package
1560 (name "presentproto")
1561 (version "1.0")
1562 (source
1563 (origin
1564 (method url-fetch)
1565 (uri (string-append
1566 "mirror://xorg/individual/proto/presentproto-"
1567 version
1568 ".tar.bz2"))
1569 (sha256
1570 (base32
1571 "1kir51aqg9cwazs14ivcldcn3mzadqgykc9cg87rm40zf947sb41"))))
1572 (build-system gnu-build-system)
1573 (home-page "https://www.x.org/wiki/")
1574 (synopsis "Xorg PresentProto protocol headers")
1575 (description
1576 "Present Extension provides a way for applications to update their
1577 window contents from a pixmap in a well defined fashion, synchronizing
1578 with the display refresh and potentially using a more efficient
1579 mechanism than copying the contents of the source pixmap.")
1580 (license (license:x11-style "file://presentproto.h"
1581 "See 'presentproto.h' in the distribution."))))
1582
1583 (define-public printproto
1584 (package
1585 (name "printproto")
1586 (version "1.0.5")
1587 (source
1588 (origin
1589 (method url-fetch)
1590 (uri (string-append
1591 "mirror://xorg/individual/proto/printproto-"
1592 version
1593 ".tar.bz2"))
1594 (sha256
1595 (base32
1596 "06liap8n4s25sgp27d371cc7yg9a08dxcr3pmdjp761vyin3360j"))))
1597 (build-system gnu-build-system)
1598 (native-inputs `(("pkg-config" ,pkg-config)))
1599 (home-page "https://www.x.org/wiki/")
1600 (synopsis "Xorg PrintProto protocol headers")
1601 (description
1602 "Print Extension defines a protocol for a portable,
1603 network-transparent printing system.")
1604 (license license:x11)))
1605
1606
1607 (define-public randrproto
1608 (package
1609 (name "randrproto")
1610 (version "1.5.0")
1611 (source
1612 (origin
1613 (method url-fetch)
1614 (uri (string-append
1615 "mirror://xorg/individual/proto/randrproto-"
1616 version
1617 ".tar.bz2"))
1618 (sha256
1619 (base32
1620 "0s4496z61y5q45q20gldwpf788b9nsa8hb13gnck1mwwwwrmarsc"))))
1621 (build-system gnu-build-system)
1622 (native-inputs `(("pkg-config" ,pkg-config)))
1623 (home-page "https://www.x.org/wiki/")
1624 (synopsis "Xorg RandRProto protocol headers")
1625 (description
1626 "Resize and Rotate Extension defines a protocol for clients to
1627 dynamically change X screens, so as to resize, rotate and reflect the root
1628 window of a screen.")
1629 (license license:x11)))
1630
1631
1632 (define-public recordproto
1633 (package
1634 (name "recordproto")
1635 (version "1.14.2")
1636 (source
1637 (origin
1638 (method url-fetch)
1639 (uri (string-append
1640 "mirror://xorg/individual/proto/recordproto-"
1641 version
1642 ".tar.bz2"))
1643 (sha256
1644 (base32
1645 "0w3kgr1zabwf79bpc28dcnj0fpni6r53rpi82ngjbalj5s6m8xx7"))))
1646 (build-system gnu-build-system)
1647 (native-inputs `(("pkg-config" ,pkg-config)))
1648 (home-page "https://www.x.org/wiki/")
1649 (synopsis "Xorg RecordProto protocol headers")
1650 (description
1651 "Record Extension defines a protocol for the recording and playback
1652 of user actions in the X Window System.")
1653 (license license:x11)))
1654
1655
1656 (define-public renderproto
1657 (package
1658 (name "renderproto")
1659 (version "0.11.1")
1660 (source
1661 (origin
1662 (method url-fetch)
1663 (uri (string-append
1664 "mirror://xorg/individual/proto/renderproto-"
1665 version
1666 ".tar.bz2"))
1667 (sha256
1668 (base32
1669 "0dr5xw6s0qmqg0q5pdkb4jkdhaja0vbfqla79qh5j1xjj9dmlwq6"))))
1670 (build-system gnu-build-system)
1671 (native-inputs `(("pkg-config" ,pkg-config)))
1672 (home-page "https://www.x.org/wiki/")
1673 (synopsis "Xorg RenderProto protocol headers")
1674 (description
1675 "Rendering Extension defines a protcol for a digital image composition
1676 as the foundation of a new rendering model within the X Window System.")
1677 (license license:x11)))
1678
1679
1680 (define-public resourceproto
1681 (package
1682 (name "resourceproto")
1683 (version "1.2.0")
1684 (source
1685 (origin
1686 (method url-fetch)
1687 (uri (string-append
1688 "mirror://xorg/individual/proto/resourceproto-"
1689 version
1690 ".tar.bz2"))
1691 (sha256
1692 (base32
1693 "0638iyfiiyjw1hg3139pai0j6m65gkskrvd9684zgc6ydcx00riw"))))
1694 (build-system gnu-build-system)
1695 (native-inputs `(("pkg-config" ,pkg-config)))
1696 (home-page "https://www.x.org/wiki/")
1697 (synopsis "Xorg ResourceProto protocol headers")
1698 (description
1699 "Resource Extension defines a protocol that allows a client to
1700 query the X server about its usage of various resources.")
1701 (license license:x11)))
1702
1703
1704 (define-public scrnsaverproto
1705 (package
1706 (name "scrnsaverproto")
1707 (version "1.2.2")
1708 (source
1709 (origin
1710 (method url-fetch)
1711 (uri (string-append
1712 "mirror://xorg/individual/proto/scrnsaverproto-"
1713 version
1714 ".tar.bz2"))
1715 (sha256
1716 (base32
1717 "0rfdbfwd35d761xkfifcscx56q0n56043ixlmv70r4v4l66hmdwb"))))
1718 (build-system gnu-build-system)
1719 (native-inputs `(("pkg-config" ,pkg-config)))
1720 (home-page "https://www.x.org/wiki/")
1721 (synopsis "Xorg ScrnSaverProto protocol headers")
1722 (description
1723 "Screen Saver Extension defines a protocol to control screensaver
1724 features and to query screensaver info on specific windows.")
1725 (license license:x11)))
1726
1727
1728 (define-public sessreg
1729 (package
1730 (name "sessreg")
1731 (version "1.1.1")
1732 (source
1733 (origin
1734 (method url-fetch)
1735 (uri (string-append
1736 "mirror://xorg/individual/app/sessreg-"
1737 version
1738 ".tar.bz2"))
1739 (sha256
1740 (base32
1741 "1qd66mg2bnppqz4xgdjzif2488zl82vx2c26ld3nb8pnyginm9vq"))))
1742 (build-system gnu-build-system)
1743 (inputs
1744 `(("xproto" ,xproto)))
1745 (native-inputs
1746 `(("pkg-config" ,pkg-config)))
1747 (home-page "https://www.x.org/wiki/")
1748 (synopsis "Register X sessions in system utmp/utmpx databases")
1749 (description
1750 "SessReg is a simple program for managing utmp/wtmp entries for X
1751 sessions. It was originally written for use with xdm, but may also be
1752 used with other display managers such as gdm or kdm.")
1753 (license license:x11)))
1754
1755
1756 (define-public setxkbmap
1757 (package
1758 (name "setxkbmap")
1759 (version "1.3.1")
1760 (source
1761 (origin
1762 (method url-fetch)
1763 (uri (string-append
1764 "mirror://xorg/individual/app/setxkbmap-"
1765 version
1766 ".tar.bz2"))
1767 (sha256
1768 (base32
1769 "1qfk097vjysqb72pq89h0la3462kbb2dh1d11qzs2fr67ybb7pd9"))))
1770 (build-system gnu-build-system)
1771 (inputs
1772 `(("libxkbfile" ,libxkbfile)
1773 ("xkeyboard-config" ,xkeyboard-config)
1774 ("libx11" ,libx11)))
1775 (native-inputs
1776 `(("pkg-config" ,pkg-config)))
1777 (arguments
1778 `(#:configure-flags
1779 (list (string-append "--with-xkb-config-root="
1780 (assoc-ref %build-inputs "xkeyboard-config")
1781 "/share/X11/xkb"))))
1782 (home-page "https://www.x.org/wiki/")
1783 (synopsis "Set the keyboard using the X Keyboard Extension")
1784 (description
1785 "Setxkbmap is an X11 client to change the keymaps in the X server
1786 for a specified keyboard to use the layout determined by the options
1787 listed on the command line.")
1788 (license license:x11)))
1789
1790
1791 (define-public smproxy
1792 (package
1793 (name "smproxy")
1794 (version "1.0.6")
1795 (source
1796 (origin
1797 (method url-fetch)
1798 (uri (string-append
1799 "mirror://xorg/individual/app/smproxy-"
1800 version
1801 ".tar.bz2"))
1802 (sha256
1803 (base32
1804 "0rkjyzmsdqmlrkx8gy2j4q6iksk58hcc92xzdprkf8kml9ar3wbc"))))
1805 (build-system gnu-build-system)
1806 (inputs
1807 `(("libxt" ,libxt)
1808 ("libxmu" ,libxmu)))
1809 (native-inputs
1810 `(("pkg-config" ,pkg-config)))
1811 (home-page "https://www.x.org/wiki/")
1812 (synopsis "Session Manager Proxy")
1813 (description
1814 "SMProxy allows X applications that do not support X11R6 session
1815 management to participate in an X11R6 session.")
1816 (license license:x11)))
1817
1818
1819 (define-public util-macros
1820 (package
1821 (name "util-macros")
1822 (version "1.19.0")
1823 (source
1824 (origin
1825 (method url-fetch)
1826 (uri (string-append
1827 "mirror://xorg/individual/util/util-macros-"
1828 version
1829 ".tar.bz2"))
1830 (sha256
1831 (base32
1832 "1fnhpryf55l0yqajxn0cxan3kvsjzi67nlanz8clwqzf54cb2d98"))))
1833 (build-system gnu-build-system)
1834 (native-inputs `(("pkg-config" ,pkg-config)))
1835 (arguments
1836 `(#:phases (alist-cons-after
1837 'unpack 'fix-makefile-in
1838 (lambda _
1839 (substitute* "Makefile.in"
1840 ;; Install xorg-macros.pc in PREFIX/lib/pkgconfig,
1841 ;; not PREFIX/share/pkgconfig.
1842 (("\\$\\(datadir\\)/pkgconfig") "$(libdir)/pkgconfig")))
1843 (alist-cons-after
1844 'install 'post-install-cleanup
1845 (lambda* (#:key outputs #:allow-other-keys)
1846 (let ((out (assoc-ref outputs "out")))
1847 (with-directory-excursion out
1848 (delete-file "share/util-macros/INSTALL")
1849 (rmdir "share/util-macros"))))
1850 %standard-phases))))
1851 (home-page "https://www.x.org/wiki/")
1852 (synopsis "Xorg autoconf macros")
1853 (description
1854 "This package provides a set of autoconf macros used by the
1855 configure.ac scripts in other Xorg modular packages, and is needed to
1856 generate new versions of their configure scripts with autoconf.")
1857 (license license:x11)))
1858
1859
1860 (define-public videoproto
1861 (package
1862 (name "videoproto")
1863 (version "2.3.3")
1864 (source
1865 (origin
1866 (method url-fetch)
1867 (uri (string-append
1868 "mirror://xorg/individual/proto/videoproto-"
1869 version
1870 ".tar.bz2"))
1871 (sha256
1872 (base32
1873 "00m7rh3pwmsld4d5fpii3xfk5ciqn17kkk38gfpzrrh8zn4ki067"))))
1874 (build-system gnu-build-system)
1875 (native-inputs `(("pkg-config" ,pkg-config)))
1876 (home-page "https://www.x.org/wiki/")
1877 (synopsis "Xorg VideoProto protocol headers")
1878 (description
1879 "Video Extension provides a protocol for a video output mechanism,
1880 mainly to rescale video playback in the video controller hardware.")
1881 (license license:x11)))
1882
1883
1884 (define-public windowswmproto
1885 (package
1886 (name "windowswmproto")
1887 (version "1.0.4")
1888 (source
1889 (origin
1890 (method url-fetch)
1891 (uri (string-append
1892 "mirror://xorg/individual/proto/windowswmproto-"
1893 version
1894 ".tar.bz2"))
1895 (sha256
1896 (base32
1897 "0syjxgy4m8l94qrm03nvn5k6bkxc8knnlld1gbllym97nvnv0ny0"))))
1898 (build-system gnu-build-system)
1899 (native-inputs `(("pkg-config" ,pkg-config)))
1900 (home-page "https://www.x.org/wiki/")
1901 (synopsis "Xorg WindowsWMProto protocol headers")
1902 (description
1903 "WindowsWM Extension defines a protocol, used for coordination between
1904 an X11 server and the Microsoft Windows native window manager. WindowsWM
1905 is only intended to be used on Cygwin when running a rootless XWin
1906 server.")
1907 (license license:x11)))
1908
1909
1910 (define-public x11perf
1911 (package
1912 (name "x11perf")
1913 (version "1.6.0")
1914 (source
1915 (origin
1916 (method url-fetch)
1917 (uri (string-append
1918 "mirror://xorg/individual/app/x11perf-"
1919 version
1920 ".tar.bz2"))
1921 (sha256
1922 (base32
1923 "0lb716yfdb8f11h4cz93d1bapqdxf1xplsb21kbp4xclq7g9hw78"))))
1924 (build-system gnu-build-system)
1925 (inputs
1926 `(("libx11" ,libx11)
1927 ("libxft" ,libxft)
1928 ("libxmu" ,libxmu)
1929 ("libxrender" ,libxrender)))
1930 (native-inputs
1931 `(("pkg-config" ,pkg-config)))
1932 (home-page "https://www.x.org/wiki/")
1933 (synopsis "X server performance benchmarker")
1934 (description
1935 "X11Perf is a simple performance benchmarker for the Xorg X server.")
1936 (license license:x11)))
1937
1938
1939 (define-public xauth
1940 (package
1941 (name "xauth")
1942 (version "1.0.10")
1943 (source
1944 (origin
1945 (method url-fetch)
1946 (uri (string-append
1947 "mirror://xorg/individual/app/xauth-"
1948 version
1949 ".tar.bz2"))
1950 (sha256
1951 (base32
1952 "0kgwz9rmxjfdvi2syf8g0ms5rr5cgyqx4n0n1m960kyz7k745zjs"))))
1953 (build-system gnu-build-system)
1954 (inputs
1955 `(("libxmu" ,libxmu)
1956 ("libxext" ,libxext)
1957 ("libxau" ,libxau)
1958 ("libx11" ,libx11)))
1959 (native-inputs
1960 `(("pkg-config" ,pkg-config)))
1961
1962 ;; FIXME: The test suite needs http://liw.fi/cmdtest/
1963 (arguments `(#:tests? #f))
1964
1965 (home-page "https://www.x.org/wiki/")
1966 (synopsis "X authority file utility")
1967 (description
1968 "XAuth program is used to edit and display the authorization
1969 information used in connecting to the X server.")
1970 (license license:x11)))
1971
1972
1973 (define-public xbacklight
1974 (package
1975 (name "xbacklight")
1976 (version "1.2.1")
1977 (source
1978 (origin
1979 (method url-fetch)
1980 (uri (string-append
1981 "mirror://xorg/individual/app/xbacklight-"
1982 version
1983 ".tar.bz2"))
1984 (sha256
1985 (base32
1986 "0arnd1j8vzhzmw72mqhjjcb2qwcbs9qphsy3ps593ajyld8wzxhp"))))
1987 (build-system gnu-build-system)
1988 (inputs
1989 `(("libxcb" ,libxcb)
1990 ("xcb-util" ,xcb-util)))
1991 (native-inputs
1992 `(("pkg-config" ,pkg-config)))
1993 (home-page "https://www.x.org/wiki/")
1994 (synopsis "Control display backlight")
1995 (description
1996 "Xbacklight is used to adjust the backlight brightness where
1997 supported. It uses the RandR extension to find all outputs on the X
1998 server supporting backlight brightness control and changes them all in
1999 the same way.")
2000 (license license:x11)))
2001
2002
2003 (define-public xbitmaps
2004 (package
2005 (name "xbitmaps")
2006 (version "1.1.1")
2007 (source
2008 (origin
2009 (method url-fetch)
2010 (uri (string-append
2011 "mirror://xorg/individual/data/xbitmaps-"
2012 version
2013 ".tar.bz2"))
2014 (sha256
2015 (base32
2016 "178ym90kwidia6nas4qr5n5yqh698vv8r02js0r4vg3b6lsb0w9n"))))
2017 (build-system gnu-build-system)
2018 (native-inputs `(("pkg-config" ,pkg-config)))
2019 (home-page "https://www.x.org/wiki/")
2020 (synopsis "X bitmaps")
2021 (description
2022 "xbitmaps provides basic bitmaps (little pictures) used by some
2023 legacy X clients.")
2024 (license license:x11)))
2025
2026 (define-public xcalc
2027 (package
2028 (name "xcalc")
2029 (version "1.0.6")
2030 (source
2031 (origin
2032 (method url-fetch)
2033 (uri (string-append
2034 "mirror://xorg/individual/app/" name "-"
2035 version
2036 ".tar.gz"))
2037 (sha256
2038 (base32
2039 "1lg8xwj0nr8anbd77n3cs87s57sr4gmb3pxs3k22a28n6ndcvmbz"))))
2040 (build-system gnu-build-system)
2041 (arguments
2042 `(#:phases (modify-phases %standard-phases
2043 (add-after
2044 'configure 'mutate-makefile
2045 (lambda _
2046 (substitute* "Makefile"
2047 (("^appdefaultdir = .*$")
2048 (string-append "appdefaultdir = " %output
2049 ,%app-defaults-dir "\n")))
2050 #t)))))
2051 (inputs
2052 `(("libxaw" ,libxaw)))
2053 (native-inputs
2054 `(("pkg-config" ,pkg-config)))
2055 (home-page "https://www.x.org/wiki/")
2056 (synopsis "Hand calculator for the X Window system")
2057 (description "Xcalc is a scientific calculator desktop accessory that can
2058 emulate a TI-30 or an HP-10C.")
2059 (license license:x11)))
2060
2061
2062 (define-public xcb-proto
2063 (package
2064 (name "xcb-proto")
2065 (version "1.12")
2066 (source
2067 (origin
2068 (method url-fetch)
2069 (uri (string-append
2070 "https://xcb.freedesktop.org/dist/xcb-proto-"
2071 version
2072 ".tar.bz2"))
2073 (sha256
2074 (base32
2075 "01j91946q8f34l1mbvmmgvyc393sm28ym4lxlacpiav4qsjan8jr"))
2076 (patches
2077 (search-patches "xcb-proto-python3-whitespace.patch"
2078 "xcb-proto-python3-print.patch"))))
2079 (build-system gnu-build-system)
2080 (native-inputs
2081 `(("pkg-config" ,pkg-config) ("python" ,python-minimal-wrapper)))
2082 (home-page "https://xcb.freedesktop.org/")
2083 (synopsis "XML-XCB protocol descriptions")
2084 (description
2085 "XCB-Proto provides the XML-XCB protocol descriptions that libxcb
2086 uses to generate the majority of its code and API. XCB-Proto is
2087 separated from libxcb to allow reuse by other projects, such as
2088 additional language bindings, protocol dissectors, or documentation
2089 generators.
2090
2091 XCB-Proto also contains language-independent Python libraries that are
2092 used to parse an XML description and create objects used by Python code
2093 generators in individual language bindings.")
2094 (license license:x11)))
2095
2096
2097 (define-public xcmiscproto
2098 (package
2099 (name "xcmiscproto")
2100 (version "1.2.2")
2101 (source
2102 (origin
2103 (method url-fetch)
2104 (uri (string-append
2105 "mirror://xorg/individual/proto/xcmiscproto-"
2106 version
2107 ".tar.bz2"))
2108 (sha256
2109 (base32
2110 "1pyjv45wivnwap2wvsbrzdvjc5ql8bakkbkrvcv6q9bjjf33ccmi"))))
2111 (build-system gnu-build-system)
2112 (native-inputs `(("pkg-config" ,pkg-config)))
2113 (home-page "https://www.x.org/wiki/")
2114 (synopsis "Xorg XCMiscProto protocol headers")
2115 (description
2116 "XC-MISC Extension defines a protocol that provides Xlib two ways
2117 to query the server for available resource IDs.")
2118 (license license:x11)))
2119
2120
2121 (define-public xcmsdb
2122 (package
2123 (name "xcmsdb")
2124 (version "1.0.5")
2125 (source
2126 (origin
2127 (method url-fetch)
2128 (uri (string-append
2129 "mirror://xorg/individual/app/xcmsdb-"
2130 version
2131 ".tar.bz2"))
2132 (sha256
2133 (base32
2134 "1ik7gzlp2igz183x70883000ygp99r20x3aah6xhaslbpdhm6n75"))))
2135 (build-system gnu-build-system)
2136 (inputs
2137 `(("libx11" ,libx11)))
2138 (native-inputs
2139 `(("pkg-config" ,pkg-config)))
2140 (home-page "https://www.x.org/wiki/")
2141 (synopsis "Device Color Characterization utility")
2142 (description
2143 "XCMSDB is used to load, query, or remove Device Color
2144 Characterization data stored in properties on the root window of the
2145 screen as specified in section 7, Device Color Characterization, of the
2146 X11 Inter-Client Communication Conventions Manual (ICCCM).")
2147 (license license:x11)))
2148
2149
2150 (define-public xcursor-themes
2151 (package
2152 (name "xcursor-themes")
2153 (version "1.0.4")
2154 (source
2155 (origin
2156 (method url-fetch)
2157 (uri (string-append
2158 "mirror://xorg/individual/data/xcursor-themes-"
2159 version
2160 ".tar.bz2"))
2161 (sha256
2162 (base32
2163 "11mv661nj1p22sqkv87ryj2lcx4m68a04b0rs6iqh3fzp42jrzg3"))))
2164 (build-system gnu-build-system)
2165 (inputs
2166 `(("libxcursor" ,libxcursor)
2167 ("xcursorgen" ,xcursorgen)))
2168 (native-inputs
2169 `(("pkg-config" ,pkg-config)))
2170 (arguments
2171 `(#:configure-flags
2172 (list (string-append "--with-cursordir="
2173 (assoc-ref %outputs "out")
2174 "/share/icons"))))
2175 (home-page "https://www.x.org/wiki/")
2176 (synopsis "Default Xorg cursors")
2177 (description
2178 "This package provides a default set of cursor themes for the Xorg
2179 X server: 'handhelds', 'redglass' and 'whiteglass'.")
2180 (license license:x11)))
2181
2182
2183 (define-public xcursorgen
2184 (package
2185 (name "xcursorgen")
2186 (version "1.0.6")
2187 (source
2188 (origin
2189 (method url-fetch)
2190 (uri (string-append
2191 "mirror://xorg/individual/app/xcursorgen-"
2192 version
2193 ".tar.bz2"))
2194 (sha256
2195 (base32
2196 "0v7nncj3kaa8c0524j7ricdf4rvld5i7c3m6fj55l5zbah7r3j1i"))))
2197 (build-system gnu-build-system)
2198 (inputs
2199 `(("libxcursor" ,libxcursor)
2200 ("libpng" ,libpng)))
2201 (native-inputs
2202 `(("pkg-config" ,pkg-config)))
2203 (home-page "https://www.x.org/wiki/")
2204 (synopsis "Create an X cursor file from PNG images")
2205 (description
2206 "XCursorGen prepares X11 cursor sets for use with libXcursor.")
2207 (license license:x11)))
2208
2209
2210 (define-public xdpyinfo
2211 (package
2212 (name "xdpyinfo")
2213 (version "1.3.2")
2214 (source
2215 (origin
2216 (method url-fetch)
2217 (uri (string-append
2218 "mirror://xorg/individual/app/xdpyinfo-"
2219 version
2220 ".tar.bz2"))
2221 (sha256
2222 (base32
2223 "0ldgrj4w2fa8jng4b3f3biaj0wyn8zvya88pnk70d7k12pcqw8rh"))))
2224 (build-system gnu-build-system)
2225 (inputs
2226 `(("inputproto" ,inputproto)
2227 ("libx11" ,libx11)
2228 ("libxxf86vm" ,libxxf86vm)
2229 ("libxxf86dga" ,libxxf86dga)
2230 ("libxtst" ,libxtst)
2231 ("libxrender" ,libxrender)
2232 ("libxinerama" ,libxinerama)
2233 ("libxi" ,libxi)
2234 ("libxcomposite" ,libxcomposite)
2235 ("libdmx" ,libdmx)))
2236 (native-inputs
2237 `(("pkg-config" ,pkg-config)))
2238 (home-page "https://www.x.org/wiki/")
2239 (synopsis "Xorg display information utility")
2240 (description
2241 "Xdpyinfo is used to display information about an X server: the
2242 capabilities of a server, the predefined values for various parameters
2243 used in communicating between clients and the server, and the different
2244 types of screens, visuals, and X11 protocol extensions that are
2245 available.")
2246 (license license:x11)))
2247
2248
2249 (define-public xdriinfo
2250 (package
2251 (name "xdriinfo")
2252 (version "1.0.5")
2253 (source
2254 (origin
2255 (method url-fetch)
2256 (uri (string-append
2257 "mirror://xorg/individual/app/xdriinfo-"
2258 version
2259 ".tar.bz2"))
2260 (sha256
2261 (base32
2262 "0681d0y8liqakkpz7mmsf689jcxrvs5291r20qi78mc9xxk3gfjc"))))
2263 (build-system gnu-build-system)
2264 (inputs
2265 `(("mesa" ,mesa)
2266 ("libx11" ,libx11)))
2267 (native-inputs
2268 `(("pkg-config" ,pkg-config)))
2269 (home-page "https://www.x.org/wiki/")
2270 (synopsis "Query DRI configuration information")
2271 (description
2272 "XDRIInfo is used to query configuration information of X11
2273 DRI (Direct Rendering Infrastructure) drivers.")
2274 (license license:x11)))
2275
2276
2277 (define-public xev
2278 (package
2279 (name "xev")
2280 (version "1.2.2")
2281 (source
2282 (origin
2283 (method url-fetch)
2284 (uri (string-append
2285 "mirror://xorg/individual/app/xev-"
2286 version
2287 ".tar.bz2"))
2288 (sha256
2289 (base32
2290 "0krivhrxpq6719103r541xpi3i3a0y15f7ypc4lnrx8sdhmfcjnr"))))
2291 (build-system gnu-build-system)
2292 (inputs
2293 `(("libxrender" ,libxrender)
2294 ("libxrandr" ,libxrandr)
2295 ("xproto" ,xproto)
2296 ("libx11" ,libx11)))
2297 (native-inputs
2298 `(("pkg-config" ,pkg-config)))
2299 (home-page "https://www.x.org/wiki/")
2300 (synopsis "Print contents of X events")
2301 (description
2302 "XEv creates a window and then asks the X server to send it X11
2303 events whenever anything happens to the window (such as it being moved,
2304 resized, typed in, clicked in, etc.). You can also attach it to an
2305 existing window. It is useful for seeing what causes events to occur
2306 and to display the information that they contain; it is essentially a
2307 debugging and development tool, and should not be needed in normal
2308 usage.")
2309 (license license:x11)))
2310
2311
2312 (define-public xextproto
2313 (package
2314 (name "xextproto")
2315 (version "7.3.0")
2316 (source
2317 (origin
2318 (method url-fetch)
2319 (uri (string-append
2320 "mirror://xorg/individual/proto/xextproto-"
2321 version
2322 ".tar.bz2"))
2323 (sha256
2324 (base32
2325 "1c2vma9gqgc2v06rfxdiqgwhxmzk2cbmknwf1ng3m76vr0xb5x7k"))))
2326 (build-system gnu-build-system)
2327 (native-inputs `(("pkg-config" ,pkg-config)))
2328 (home-page "https://www.x.org/wiki/")
2329 (synopsis "Xorg XExtProto protocol headers")
2330 (description
2331 "XExtProto provides the following extensions: DOUBLE-BUFFER, DPMS,
2332 Extended-Visual-Information, Generic Event Extension, LBX, MIT-SHM,
2333 MIT-SUNDRY-NONSTANDARD, Multi-Buffering, SECURITY, SHAPE, SYNC, TOG-CUP,
2334 XC-APPGROUP, XTEST.")
2335 (license license:x11)))
2336
2337
2338 (define-public libevdev
2339 (package
2340 (name "libevdev")
2341 (version "1.5.6")
2342 (source
2343 (origin
2344 (method url-fetch)
2345 (uri (string-append "https://www.freedesktop.org/software/" name "/"
2346 name "-" version ".tar.xz"))
2347 (sha256
2348 (base32
2349 "1256ypz93039n6km4macg158fpmjgylhmcmk20pnklxicsfpxv7c"))))
2350 (build-system gnu-build-system)
2351 (native-inputs `(("python" ,python)))
2352 (home-page "https://www.freedesktop.org/wiki/Software/libevdev/")
2353 (synopsis "Wrapper library for evdev devices")
2354 (description
2355 "libevdev is a wrapper library for evdev devices. it moves the common
2356 tasks when dealing with evdev devices into a library and provides a library
2357 interface to the callers, thus avoiding erroneous ioctls, etc.
2358
2359 The eventual goal is that libevdev wraps all ioctls available to evdev
2360 devices, thus making direct access unnecessary.")
2361 (license (license:x11-style "file://COPYING"))))
2362
2363
2364 (define-public xf86-input-evdev
2365 (package
2366 (name "xf86-input-evdev")
2367 (version "2.10.5")
2368 (source
2369 (origin
2370 (method url-fetch)
2371 (uri (string-append
2372 "mirror://xorg/individual/driver/xf86-input-evdev-"
2373 version
2374 ".tar.bz2"))
2375 (sha256
2376 (base32
2377 "03dphgwjaxxyys8axc1kyysp6xvy9bjxicsdrhi2jvdgbchadnly"))))
2378 (build-system gnu-build-system)
2379 (inputs
2380 `(("udev" ,eudev)
2381 ("libevdev" ,libevdev)
2382 ("mtdev" ,mtdev)
2383 ("xorg-server" ,xorg-server)))
2384 (native-inputs `(("pkg-config" ,pkg-config)))
2385 (arguments
2386 `(#:configure-flags
2387 (list (string-append "--with-sdkdir="
2388 (assoc-ref %outputs "out")
2389 "/include/xorg"))))
2390 (home-page "https://www.x.org/wiki/")
2391 (synopsis "Generic input driver for X server")
2392 (description
2393 "xf86-input-evdev is a generic input driver for the Xorg X server.
2394 This driver supports all input devices that the kernel knows about,
2395 including most mice, keyboards, tablets and touchscreens.")
2396 (license license:x11)))
2397
2398 (define-public xf86-input-libinput
2399 (package
2400 (name "xf86-input-libinput")
2401 (version "0.25.1")
2402 (source (origin
2403 (method url-fetch)
2404 (uri (string-append
2405 "mirror://xorg/individual/driver/"
2406 name "-" version ".tar.bz2"))
2407 (sha256
2408 (base32
2409 "1q67hjd67ni1nq7kgxdrrdgkyhzaqvvn2vlnsiiq9w4y3icpv7s8"))))
2410 (build-system gnu-build-system)
2411 (arguments
2412 '(#:configure-flags
2413 (list (string-append "--with-sdkdir="
2414 %output "/include/xorg"))))
2415 (native-inputs
2416 `(("pkg-config" ,pkg-config)))
2417 (inputs
2418 `(("libinput" ,libinput)
2419 ("xorg-server" ,xorg-server)))
2420 (home-page "https://www.x.org/wiki/")
2421 (synopsis "Input driver for X server based on libinput")
2422 (description
2423 "xf86-input-libinput is an input driver for the Xorg X server based
2424 on libinput. It is a thin wrapper around libinput, so while it does
2425 provide all features that libinput supports it does little beyond.")
2426 (license license:x11)))
2427
2428 (define-public xf86-input-joystick
2429 (package
2430 (name "xf86-input-joystick")
2431 (version "1.6.3")
2432 (source
2433 (origin
2434 (method url-fetch)
2435 (uri (string-append
2436 "mirror://xorg/individual/driver/xf86-input-joystick-"
2437 version
2438 ".tar.bz2"))
2439 (sha256
2440 (base32
2441 "1awfq496d082brgjbr60lhm6jvr9537rflwxqdfqwfzjy3n6jxly"))))
2442 (build-system gnu-build-system)
2443 (inputs `(("xorg-server" ,xorg-server)))
2444 (native-inputs `(("pkg-config" ,pkg-config)))
2445 (arguments
2446 `(#:configure-flags
2447 (list (string-append "--with-sdkdir="
2448 (assoc-ref %outputs "out")
2449 "/include/xorg"))))
2450 (home-page "https://www.x.org/wiki/")
2451 (synopsis "Joystick input driver for X server")
2452 (description
2453 "xf86-input-joystick is a joystick input driver for the Xorg X server.
2454 It is used to cotrol the pointer with a joystick device.")
2455 (license license:x11)))
2456
2457
2458 (define-public xf86-input-keyboard
2459 (package
2460 (name "xf86-input-keyboard")
2461 (version "1.9.0")
2462 (source
2463 (origin
2464 (method url-fetch)
2465 (uri (string-append
2466 "mirror://xorg/individual/driver/xf86-input-keyboard-"
2467 version
2468 ".tar.bz2"))
2469 (sha256
2470 (base32
2471 "12032yg412kyvnmc5fha1in7mpi651d8sa1bk4138s2j2zr01jgp"))))
2472 (build-system gnu-build-system)
2473 (inputs `(("xorg-server" ,xorg-server)))
2474 (native-inputs `(("pkg-config" ,pkg-config)))
2475 (home-page "https://www.x.org/wiki/")
2476 (synopsis "Keyboard input driver for X server")
2477 (description
2478 "xf86-input-keyboard is a keyboard input driver for the Xorg X server.")
2479 (license license:x11)))
2480
2481
2482 (define-public xf86-input-mouse
2483 (package
2484 (name "xf86-input-mouse")
2485 (version "1.9.2")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (string-append
2490 "mirror://xorg/individual/driver/xf86-input-mouse-"
2491 version
2492 ".tar.bz2"))
2493 (sha256
2494 (base32
2495 "0bsbgww9421792zan43j60mndqprhfxhc48agsi15d3abjqda9gl"))))
2496 (build-system gnu-build-system)
2497 (inputs `(("xorg-server" ,xorg-server)))
2498 (native-inputs `(("pkg-config" ,pkg-config)))
2499 (arguments
2500 `(#:configure-flags
2501 (list (string-append "--with-sdkdir="
2502 (assoc-ref %outputs "out")
2503 "/include/xorg"))))
2504 (home-page "https://www.x.org/wiki/")
2505 (synopsis "Mouse input driver for X server")
2506 (description
2507 "xf86-input-mouse is a mouse input driver for the Xorg X server.
2508 This driver supports four classes of mice: serial, bus and PS/2 mice,
2509 and additional mouse types supported by specific operating systems, such
2510 as USB mice.")
2511 (license license:x11)))
2512
2513
2514 (define-public xf86-input-synaptics
2515 (package
2516 (name "xf86-input-synaptics")
2517 (version "1.9.0")
2518 (source
2519 (origin
2520 (method url-fetch)
2521 (uri (string-append
2522 "mirror://xorg/individual/driver/xf86-input-synaptics-"
2523 version
2524 ".tar.bz2"))
2525 (sha256
2526 (base32
2527 "0niv0w1czbxh4y3qkqbpdp5gjwhp3379inwhknhif0m4sy4k5fmg"))))
2528 (build-system gnu-build-system)
2529 (inputs `(("libx11" ,libx11)
2530 ("libxi" ,libxi)
2531 ("libevdev" ,libevdev)
2532 ("mtdev" ,mtdev)
2533 ("xorg-server" ,xorg-server)))
2534 (native-inputs `(("pkg-config" ,pkg-config)))
2535 (arguments
2536 `(#:configure-flags
2537 (list (string-append "--with-sdkdir="
2538 (assoc-ref %outputs "out")
2539 "/include/xorg")
2540 (string-append "--with-xorg-conf-dir="
2541 (assoc-ref %outputs "out")
2542 "/share/X11/xorg.conf.d"))))
2543 (home-page "https://www.x.org/wiki/")
2544 (synopsis "Touchpad input driver for X server")
2545 (description
2546 "xf86-input-synaptics is a touchpad driver for the Xorg X server.")
2547 (license license:x11)))
2548
2549
2550 (define-public xf86-input-void
2551 (package
2552 (name "xf86-input-void")
2553 (version "1.4.1")
2554 (source
2555 (origin
2556 (method url-fetch)
2557 (uri (string-append
2558 "mirror://xorg/individual/driver/xf86-input-void-"
2559 version
2560 ".tar.bz2"))
2561 (sha256
2562 (base32
2563 "171k8b8s42s3w73l7ln9jqwk88w4l7r1km2blx1vy898c854yvpr"))))
2564 (build-system gnu-build-system)
2565 (inputs `(("xorg-server" ,xorg-server)))
2566 (native-inputs `(("pkg-config" ,pkg-config)))
2567 (home-page "https://www.x.org/wiki/")
2568 (synopsis "Void (null) input driver for X server")
2569 (description
2570 "xf86-input-void is a null input driver for the Xorg X server.")
2571 (license license:x11)))
2572
2573
2574 (define-public xf86-video-ark
2575 (package
2576 (name "xf86-video-ark")
2577 (version "0.7.5")
2578 (source
2579 (origin
2580 (method url-fetch)
2581 (uri (string-append
2582 "mirror://xorg/individual/driver/xf86-video-ark-"
2583 version
2584 ".tar.bz2"))
2585 (sha256
2586 (base32
2587 "07p5vdsj2ckxb6wh02s61akcv4qfg6s1d5ld3jn3lfaayd3f1466"))
2588 (patches (search-patches "xf86-video-ark-remove-mibstore.patch"))))
2589 (build-system gnu-build-system)
2590 (inputs `(("xorg-server" ,xorg-server)))
2591 (native-inputs `(("pkg-config" ,pkg-config)))
2592 (home-page "https://www.x.org/wiki/")
2593 (synopsis "Ark Logic video driver for X server")
2594 (description
2595 "xf86-video-ark is an Ark Logic video driver for the Xorg X server.")
2596 (license license:x11)))
2597
2598 ;; This driver depends on XAA which has been removed from xorg-server.
2599 ;;
2600 ;; (define-public xf86-video-ast
2601 ;; (package
2602 ;; (name "xf86-video-ast")
2603 ;; (version "0.93.10")
2604 ;; (source
2605 ;; (origin
2606 ;; (method url-fetch)
2607 ;; (uri (string-append
2608 ;; "mirror://xorg/individual/driver/xf86-video-ast-"
2609 ;; version
2610 ;; ".tar.bz2"))
2611 ;; (sha256
2612 ;; (base32
2613 ;; "1q64z8qqa0ix3cymqiwk1s3sphd1fvvz30lvyxhgkgciygz6dm69"))
2614 ;; (patches (search-patches "xf86-video-ast-remove-mibstore.patch"))))
2615 ;; (build-system gnu-build-system)
2616 ;; (inputs `(("xorg-server" ,xorg-server)))
2617 ;; (native-inputs `(("pkg-config" ,pkg-config)))
2618 ;; (home-page "https://www.x.org/wiki/")
2619 ;; (synopsis "ASpeed Technologies video driver for X server")
2620 ;; (description
2621 ;; "xf86-video-ast is an ASpeed Technologies video driver for the Xorg
2622 ;; X server.")
2623 ;; (license license:x11)))
2624
2625
2626 (define-public xf86-video-ati
2627 (package
2628 (name "xf86-video-ati")
2629 (version "7.9.0")
2630 (source
2631 (origin
2632 (method url-fetch)
2633 (uri (string-append
2634 "mirror://xorg/individual/driver/xf86-video-ati-"
2635 version
2636 ".tar.bz2"))
2637 (sha256
2638 (base32
2639 "0xcq0lncb5p4sas5866qpkjyp1v8ksalw7m1gmqb3brhccp8gb9w"))))
2640 (build-system gnu-build-system)
2641 (inputs `(("mesa" ,mesa)
2642 ("xxf86driproto" ,xf86driproto)
2643 ("xorg-server" ,xorg-server)))
2644 (native-inputs `(("pkg-config" ,pkg-config)))
2645 (arguments `(#:configure-flags `("--disable-glamor"))) ; TODO: Enable glamor
2646 (home-page "https://www.x.org/wiki/")
2647 (synopsis "ATI Radeon video driver for X server")
2648 (description
2649 "xf86-video-ati is an ATI Radeon video driver for the Xorg
2650 X server.")
2651 (license license:x11)))
2652
2653
2654 (define-public xf86-video-cirrus
2655 (package
2656 (name "xf86-video-cirrus")
2657 (version "1.5.3")
2658 (source
2659 (origin
2660 (method url-fetch)
2661 (uri (string-append
2662 "mirror://xorg/individual/driver/xf86-video-cirrus-"
2663 version
2664 ".tar.bz2"))
2665 (sha256
2666 (base32
2667 "1asifc6ld2g9kap15vfhvsvyl69lj7pw3d9ra9mi4najllh7pj7d"))))
2668 (build-system gnu-build-system)
2669 (inputs `(("xorg-server" ,xorg-server)))
2670 (native-inputs `(("pkg-config" ,pkg-config)))
2671 (home-page "https://www.x.org/wiki/")
2672 (synopsis "Cirrus Logic video driver for X server")
2673 (description
2674 "xf86-video-cirrus is a Cirrus Logic video driver for the Xorg
2675 X server.")
2676 (license license:x11)))
2677
2678
2679 ;; non-free license
2680 ;; (define-public xf86-video-dummy
2681
2682
2683 (define-public xf86-video-fbdev
2684 (package
2685 (name "xf86-video-fbdev")
2686 (version "0.4.4")
2687 (source
2688 (origin
2689 (method url-fetch)
2690 (uri (string-append
2691 "mirror://xorg/individual/driver/xf86-video-fbdev-"
2692 version
2693 ".tar.bz2"))
2694 (sha256
2695 (base32
2696 "06ym7yy017lanj730hfkpfk4znx3dsj8jq3qvyzsn8w294kb7m4x"))))
2697 (build-system gnu-build-system)
2698 (inputs `(("xorg-server" ,xorg-server)))
2699 (native-inputs `(("pkg-config" ,pkg-config)))
2700 (home-page "https://www.x.org/wiki/")
2701 (synopsis "Framebuffer device video driver for X server")
2702 (description
2703 "xf86-video-fbdev is a video driver for the Xorg X server for
2704 framebuffer device.")
2705 (license license:x11)))
2706
2707
2708 (define-public xf86-video-freedreno
2709 (let ((commit "ccba8f89995de7d5e1b216e580b789c4cda05035"))
2710 (package
2711 (name "xf86-video-freedreno")
2712 (version (string-append "1.4.0-1-" (string-take commit 7)))
2713 (source
2714 (origin
2715 ;; there's no current tarball
2716 (method git-fetch)
2717 (uri (git-reference
2718 (url (string-append "https://anongit.freedesktop.org/git/xorg/"
2719 "driver/xf86-video-freedreno.git"))
2720 (commit commit)))
2721 (sha256
2722 (base32
2723 "0bl9m1agi793lcddv94j8afzw1xc9w810q91mbq0n3dscbbcr9nh"))
2724 (file-name (string-append name "-" version))))
2725 (build-system gnu-build-system)
2726 (inputs
2727 `(("libdrm" ,libdrm)
2728 ("mesa" ,mesa)
2729 ("udev" ,eudev)
2730 ("xorg-server" ,xorg-server)))
2731 (native-inputs
2732 `(("pkg-config" ,pkg-config)
2733 ("autoconf" ,autoconf)
2734 ("automake" ,automake)
2735 ("libtool" ,libtool)))
2736 ;; This driver is only supported on ARM systems.
2737 (supported-systems '("armhf-linux" "aarch64-linux"))
2738 (arguments
2739 `(#:configure-flags
2740 (list (string-append "--with-xorg-conf-dir="
2741 (assoc-ref %outputs "out")
2742 "/share/X11/xorg.conf.d"))
2743 #:phases (modify-phases %standard-phases
2744 (add-after 'unpack 'bootstrap
2745 (lambda _
2746 (zero? (system* "autoreconf" "-vfi")))))))
2747 (home-page "https://www.x.org/wiki/")
2748 (synopsis "Adreno video driver for X server")
2749 (description
2750 "xf86-video-freedreno is a 2D graphics driver for the Xorg X server.
2751 It supports a variety of Adreno graphics chipsets.")
2752 (license license:x11))))
2753
2754
2755 (define-public xf86-video-geode
2756 (package
2757 (name "xf86-video-geode")
2758 (version "2.11.19")
2759 (source
2760 (origin
2761 (method url-fetch)
2762 (uri (string-append
2763 "mirror://xorg/individual/driver/xf86-video-geode-"
2764 version
2765 ".tar.bz2"))
2766 (sha256
2767 (base32
2768 "0zn9gb49grds5mcs1dlrx241k2w1sgqmx4i5x7v6159xxqhlqsf6"))
2769 (patches (search-patches "xf86-video-geode-glibc-2.20.patch"))))
2770 (build-system gnu-build-system)
2771 (inputs `(("xorg-server" ,xorg-server)))
2772 (native-inputs `(("pkg-config" ,pkg-config)))
2773 (supported-systems
2774 ;; This driver is only supported on i686 systems.
2775 (filter (lambda (system) (string-prefix? "i686-" system))
2776 %supported-systems))
2777 (home-page "https://www.x.org/wiki/")
2778 (synopsis "AMD Geode GX/LX video driver for X server")
2779 (description
2780 "xf86-video-geode is an Xorg X server video driver for the AMD
2781 Geode GX and LX processors. The GX component supports both XAA and EXA
2782 for graphics acceleration. The LX component supports EXA, including
2783 compositing. Both support Xv overlay and dynamic rotation with XRandR.")
2784 (license license:x11)))
2785
2786
2787 ;; Driver for obsolete graphics cards, depends on libglide:
2788 ;; http://sourceforge.net/projects/glide/ ,
2789 ;; last updated in 2003, and which does not compile out of the box any more.
2790 ;; (define-public xf86-video-glide
2791 ;; (package
2792 ;; (name "xf86-video-glide")
2793 ;; (version "1.2.0")
2794 ;; (source
2795 ;; (origin
2796 ;; (method url-fetch)
2797 ;; (uri (string-append
2798 ;; "mirror://xorg/X11R7.7/src/everything/xf86-video-glide-"
2799 ;; version
2800 ;; ".tar.bz2"))
2801 ;; (sha256
2802 ;; (base32
2803 ;; "0byapm9mnpqk3wijfnnan3d22ii5cw6dmg4xn1625iiz89j5vs1l"))))
2804 ;; (build-system gnu-build-system)
2805 ;; (inputs `(("pkg-config" ,pkg-config)
2806 ;; ("xorg-server" ,xorg-server)))
2807 ;; (home-page "https://www.x.org/wiki/")
2808 ;; (synopsis "Glide video driver for X server")
2809 ;; (description
2810 ;; "xf86-video-glide is a Glide video driver for the Xorg X server.")
2811 ;; (license license:x11)))
2812
2813
2814 (define-public xf86-video-glint
2815 (package
2816 (name "xf86-video-glint")
2817 (version "1.2.9")
2818 (source
2819 (origin
2820 (method url-fetch)
2821 (uri (string-append
2822 "mirror://xorg/individual/driver/xf86-video-glint-"
2823 version
2824 ".tar.bz2"))
2825 (sha256
2826 (base32
2827 "1lkpspvrvrp9s539bhfdjfh4andaqyk63l6zjn8m3km95smk6a45"))))
2828 (build-system gnu-build-system)
2829 (inputs `(("xf86dgaproto" ,xf86dgaproto)
2830 ("xorg-server" ,xorg-server)))
2831 (native-inputs `(("pkg-config" ,pkg-config)))
2832 (home-page "https://www.x.org/wiki/")
2833 (synopsis "GLINT/Permedia video driver for X server")
2834 (description
2835 "xf86-video-glint is a GLINT/Permedia video driver for the Xorg
2836 X server.")
2837 (license license:x11)))
2838
2839
2840 (define-public xf86-video-i128
2841 (package
2842 (name "xf86-video-i128")
2843 (version "1.3.6")
2844 (source
2845 (origin
2846 (method url-fetch)
2847 (uri (string-append
2848 "mirror://xorg/individual/driver/xf86-video-i128-"
2849 version
2850 ".tar.bz2"))
2851 (sha256
2852 (base32
2853 "171b8lbxr56w3isph947dnw7x87hc46v6m3mcxdcz44gk167x0pq"))
2854 (patches (search-patches "xf86-video-i128-remove-mibstore.patch"))))
2855 (build-system gnu-build-system)
2856 (inputs `(("xorg-server" ,xorg-server)))
2857 (native-inputs `(("pkg-config" ,pkg-config)))
2858 (home-page "https://www.x.org/wiki/")
2859 (synopsis "I128 video driver for X server")
2860 (description
2861 "xf86-video-i128 is an I128 (Imagine 128) video driver for the Xorg
2862 X server.")
2863 (license license:x11)))
2864
2865
2866 (define-public xf86-video-intel
2867 (let ((commit "6babcf15dd605ef40de53f5c34f95b7fd195edbe"))
2868 (package
2869 (name "xf86-video-intel")
2870 (version (string-append "2.99.917-6-" (string-take commit 7)))
2871 (source
2872 (origin
2873 ;; there's no current tarball
2874 (method git-fetch)
2875 (uri (git-reference
2876 (url "https://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel.git")
2877 (commit commit)))
2878 (sha256
2879 (base32
2880 "055v4z26r00h3mxsd084n3aq8b5h0h3jkv52xss76zgbsq3n2354"))
2881 (file-name (string-append name "-" version))))
2882 (build-system gnu-build-system)
2883 (inputs `(("mesa" ,mesa)
2884 ("udev" ,eudev)
2885 ("libx11" ,libx11)
2886 ("libxfont" ,libxfont2)
2887 ("xorg-server" ,xorg-server)))
2888 (native-inputs
2889 `(("pkg-config" ,pkg-config)
2890 ("autoconf" ,autoconf)
2891 ("automake" ,automake)
2892 ("libtool" ,libtool)))
2893 (supported-systems
2894 ;; This driver is only supported on Intel systems.
2895 (filter (lambda (system) (or (string-prefix? "i686-" system)
2896 (string-prefix? "x86_64-" system)))
2897 %supported-systems))
2898 (arguments
2899 '(#:configure-flags '("--with-default-accel=uxa")
2900 #:phases (modify-phases %standard-phases
2901 (add-after 'unpack 'bootstrap
2902 (lambda _
2903 (zero? (system* "autoreconf" "-vfi")))))))
2904 (home-page "https://www.x.org/wiki/")
2905 (synopsis "Intel video driver for X server")
2906 (description
2907 "xf86-video-intel is a 2D graphics driver for the Xorg X server.
2908 It supports a variety of Intel graphics chipsets.")
2909 (license license:x11))))
2910
2911
2912 (define-public xf86-video-mach64
2913 (package
2914 (name "xf86-video-mach64")
2915 (version "6.9.5")
2916 (source
2917 (origin
2918 (method url-fetch)
2919 (uri (string-append
2920 "mirror://xorg/individual/driver/xf86-video-mach64-"
2921 version
2922 ".tar.bz2"))
2923 (sha256
2924 (base32
2925 "07xlf5nsjm0x18ij5gyy4lf8hwpl10i8chi3skpqjh84drdri61y"))
2926 (patches (search-patches "xf86-video-mach64-glibc-2.20.patch"))))
2927 (build-system gnu-build-system)
2928 (inputs `(("mesa" ,mesa)
2929 ("xf86driproto" ,xf86driproto)
2930 ("xorg-server" ,xorg-server)))
2931 (native-inputs
2932 `(("pkg-config" ,pkg-config)))
2933 (home-page "https://www.x.org/wiki/")
2934 (synopsis "Mach64 video driver for X server")
2935 (description
2936 "xf86-video-mach64 is a video driver for the Xorg X server.
2937 This driver is intended for all ATI video adapters based on the Mach64
2938 series or older chipsets, providing maximum video function within
2939 hardware limitations. The driver is also intended to optionally provide
2940 the same level of support for generic VGA or 8514/A adapters.")
2941 (license license:x11)))
2942
2943
2944 (define-public xf86-video-mga
2945 (package
2946 (name "xf86-video-mga")
2947 (version "1.6.5")
2948 (source
2949 (origin
2950 (method url-fetch)
2951 (uri (string-append
2952 "mirror://xorg/individual/driver/xf86-video-mga-"
2953 version
2954 ".tar.bz2"))
2955 (sha256
2956 (base32
2957 "08ll52hlar9z446v0wwca5qkj3hxhswwm7vvcgic9xv4cf7csqxn"))))
2958 (build-system gnu-build-system)
2959 (inputs `(("mesa" ,mesa)
2960 ("xf86driproto" ,xf86driproto)
2961 ("xorg-server" ,xorg-server)))
2962 (native-inputs `(("pkg-config" ,pkg-config)))
2963 (home-page "https://www.x.org/wiki/")
2964 (synopsis "Matrox video driver for X server")
2965 (description
2966 "xf86-video-mga is a Matrox video driver for the Xorg X server.")
2967 (license license:x11)))
2968
2969 (define-public xf86-video-neomagic
2970 (package
2971 (name "xf86-video-neomagic")
2972 (version "1.2.9")
2973 (source
2974 (origin
2975 (method url-fetch)
2976 (uri (string-append
2977 "mirror://xorg/individual/driver/xf86-video-neomagic-"
2978 version
2979 ".tar.bz2"))
2980 (sha256
2981 (base32
2982 "1whb2kgyqaxdjim27ya404acz50izgmafwnb6y9m89q5n6b97y3j"))))
2983 (build-system gnu-build-system)
2984 (inputs `(("xf86dgaproto" ,xf86dgaproto)
2985 ("xorg-server" ,xorg-server)))
2986 (native-inputs `(("pkg-config" ,pkg-config)))
2987 (home-page "https://www.x.org/wiki/")
2988 (synopsis "NeoMagic video driver for X server")
2989 (description
2990 "xf86-video-neomagic is a NeoMagic video driver for the Xorg X server.")
2991 (license license:x11)))
2992
2993
2994 ;; This driver depends on XAA which has been removed from xorg-server.
2995
2996 ;; (define-public xf86-video-newport
2997 ;; (package
2998 ;; (name "xf86-video-newport")
2999 ;; (version "0.2.4")
3000 ;; (source
3001 ;; (origin
3002 ;; (method url-fetch)
3003 ;; (uri (string-append
3004 ;; "mirror://xorg/individual/driver/xf86-video-newport-"
3005 ;; version
3006 ;; ".tar.bz2"))
3007 ;; (sha256
3008 ;; (base32
3009 ;; "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
3010 ;; (build-system gnu-build-system)
3011 ;; (inputs `(("xorg-server" ,xorg-server)))
3012 ;; (native-inputs `(("pkg-config" ,pkg-config)))
3013 ;; (home-page "https://www.x.org/wiki/")
3014 ;; (synopsis "Newport video driver for X server")
3015 ;; (description
3016 ;; "xf86-video-newport is an Xorg X server video driver for the SGI
3017 ;; newport cards.")
3018 ;; (license license:x11)))
3019
3020
3021 (define-public xf86-video-nv
3022 (package
3023 (name "xf86-video-nv")
3024 (version "2.1.21")
3025 (source
3026 (origin
3027 (method url-fetch)
3028 (uri (string-append
3029 "mirror://xorg/individual/driver/xf86-video-nv-"
3030 version
3031 ".tar.bz2"))
3032 (sha256
3033 (base32
3034 "0bdk3pc5y0n7p53q4gc2ff7bw16hy5hwdjjxkm5j3s7hdyg6960z"))))
3035 (build-system gnu-build-system)
3036 (inputs `(("xorg-server" ,xorg-server)))
3037 (native-inputs `(("pkg-config" ,pkg-config)))
3038 (home-page "https://www.x.org/wiki/")
3039 (synopsis "NVIDIA video driver for X server")
3040 (description
3041 "This package contains Xorg support for the NVIDIA GeForce 8 series of
3042 graphics processors.
3043
3044 There are a few caveats of which to be aware: the XVideo extension is not
3045 supported, and the RENDER extension is not accelerated by this driver.")
3046 (license license:x11)))
3047
3048 (define-public xf86-video-nouveau
3049 (package
3050 (name "xf86-video-nouveau")
3051 (version "1.0.15")
3052 (source
3053 (origin
3054 (method url-fetch)
3055 (uri (string-append
3056 "mirror://xorg/individual/driver/xf86-video-nouveau-"
3057 version
3058 ".tar.bz2"))
3059 (sha256
3060 (base32
3061 "0k0xah72ryjwak4dc4crszxrlkmi9x1s7p3sd4la642n77yi1pmf"))))
3062 (build-system gnu-build-system)
3063 (inputs `(("xorg-server" ,xorg-server)))
3064 (native-inputs `(("pkg-config" ,pkg-config)))
3065 (home-page "https://nouveau.freedesktop.org")
3066 (synopsis "NVIDIA video driver for X server")
3067 (description
3068 "This package provides modern, high-quality Xorg drivers for NVIDIA
3069 graphics cards.")
3070 (license license:x11)))
3071
3072 (define-public xf86-video-openchrome
3073 (package
3074 (name "xf86-video-openchrome")
3075 (version "0.6.0")
3076 (source
3077 (origin
3078 (method url-fetch)
3079 (uri (string-append
3080 "mirror://xorg/individual/driver/xf86-video-openchrome-"
3081 version
3082 ".tar.bz2"))
3083 (sha256
3084 (base32
3085 "0x9gq3hw6k661k82ikd1y2kkk4dmgv310xr5q59dwn4k6z37aafs"))))
3086 (build-system gnu-build-system)
3087 (inputs `(("libx11" ,libx11)
3088 ("libxext" ,libxext)
3089 ("libxvmc" ,libxvmc)
3090 ("mesa" ,mesa)
3091 ("xf86driproto" ,xf86driproto)
3092 ("xorg-server" ,xorg-server)))
3093 (native-inputs
3094 `(("pkg-config" ,pkg-config)))
3095 (home-page "https://www.x.org/wiki/")
3096 (synopsis "Openchrome video driver for X server")
3097 (description
3098 "xf86-video-openchrome is a video driver for the Xorg X server.
3099 This driver is intended for VIA chipsets featuring the VIA UniChrome,
3100 UniChrome Pro and Chrome9 integrated graphics processors.")
3101 (license license:x11)))
3102
3103
3104 (define-public xf86-video-qxl
3105 (package
3106 (name "xf86-video-qxl")
3107 (version "0.1.5")
3108 (source (origin
3109 (method url-fetch)
3110 (uri (string-append
3111 "mirror://xorg/individual/driver/"
3112 "xf86-video-qxl-" version ".tar.bz2"))
3113 (sha256
3114 (base32
3115 "14jc24znnahhmz4kqalafmllsg8awlz0y6gpgdpk5ih38ph851mi"))))
3116 (build-system gnu-build-system)
3117 (inputs
3118 `(("fontsproto" ,fontsproto)
3119 ("libxfont" ,libxfont2)
3120 ("spice-protocol" ,spice-protocol)
3121 ("xf86dgaproto" ,xf86dgaproto)
3122 ("xorg-server" ,xorg-server)
3123 ("xproto" ,xproto)))
3124 (native-inputs
3125 `(("pkg-config" ,pkg-config)))
3126 (synopsis "Qxl video driver for X server")
3127 (description "xf86-video-qxl is a video driver for the Xorg X server.
3128 This driver is intended for the spice qxl virtio device.")
3129 (home-page "http://www.spice-space.org")
3130 (license license:x11)))
3131
3132
3133 (define-public xf86-video-r128
3134 (package
3135 (name "xf86-video-r128")
3136 (version "6.10.2")
3137 (source
3138 (origin
3139 (method url-fetch)
3140 (uri (string-append
3141 "mirror://xorg/individual/driver/xf86-video-r128-"
3142 version
3143 ".tar.bz2"))
3144 (sha256
3145 (base32
3146 "1pkpka5m4cd6iy0f8iqnmg6xci14nb6887ilvxzn3xrsgx8j3nl4"))))
3147 (build-system gnu-build-system)
3148 (inputs `(("mesa" ,mesa)
3149 ("xf86driproto" ,xf86driproto)
3150 ("xorg-server" ,xorg-server)))
3151 (native-inputs `(("pkg-config" ,pkg-config)))
3152 (home-page "https://www.x.org/wiki/")
3153 (synopsis "ATI Rage 128 video driver for X server")
3154 (description
3155 "xf86-video-r128 is a video driver for the Xorg X server.
3156 This driver is intended for ATI Rage 128 based cards.")
3157 (license license:x11)))
3158
3159
3160 (define-public xf86-video-savage
3161 (package
3162 (name "xf86-video-savage")
3163 (version "2.3.9")
3164 (source
3165 (origin
3166 (method url-fetch)
3167 (uri (string-append
3168 "mirror://xorg/individual/driver/xf86-video-savage-"
3169 version
3170 ".tar.bz2"))
3171 (sha256
3172 (base32
3173 "11pcrsdpdrwk0mrgv83s5nsx8a9i4lhmivnal3fjbrvi3zdw94rc"))))
3174 (build-system gnu-build-system)
3175 (inputs `(("mesa" ,mesa)
3176 ("xf86driproto" ,xf86driproto)
3177 ("xorg-server" ,xorg-server)))
3178 (native-inputs `(("pkg-config" ,pkg-config)))
3179 (home-page "https://www.x.org/wiki/")
3180 (synopsis "Savage video driver for X server")
3181 (description
3182 "xf86-video-savage is an S3 Savage video driver for the Xorg X server.")
3183 (license license:x11)))
3184
3185
3186 (define-public xf86-video-siliconmotion
3187 (package
3188 (name "xf86-video-siliconmotion")
3189 (version "1.7.9")
3190 (source
3191 (origin
3192 (method url-fetch)
3193 (uri (string-append
3194 "mirror://xorg/individual/driver/xf86-video-siliconmotion-"
3195 version
3196 ".tar.bz2"))
3197 (sha256
3198 (base32
3199 "1g2r6gxqrmjdff95d42msxdw6vmkg2zn5sqv0rxd420iwy8wdwyh"))))
3200 (build-system gnu-build-system)
3201 (inputs `(("xorg-server" ,xorg-server)))
3202 (native-inputs `(("pkg-config" ,pkg-config)))
3203 (home-page "https://www.x.org/wiki/")
3204 (synopsis "Silicon Motion video driver for X server")
3205 (description
3206 "xf86-video-siliconmotion is a Silicon Motion video driver for the
3207 Xorg X server.")
3208 (license license:x11)))
3209
3210
3211 (define-public xf86-video-sis
3212 (package
3213 (name "xf86-video-sis")
3214 (version "0.10.9")
3215 (source
3216 (origin
3217 (method url-fetch)
3218 (uri (string-append
3219 "mirror://xorg/individual/driver/xf86-video-sis-"
3220 version
3221 ".tar.bz2"))
3222 (sha256
3223 (base32
3224 "03f1abjjf68y8y1iz768rn95va9d33wmbwfbsqrgl6k0gi0bf9jj"))))
3225 (build-system gnu-build-system)
3226 (inputs `(("mesa" ,mesa)
3227 ("xf86dgaproto" ,xf86dgaproto)
3228 ("xf86driproto" ,xf86driproto)
3229 ("xorg-server" ,xorg-server)))
3230 (native-inputs
3231 `(("pkg-config" ,pkg-config)))
3232 (home-page "https://www.x.org/wiki/")
3233 (synopsis "Sis video driver for X server")
3234 (description
3235 "xf86-video-SiS is a SiS video driver for the Xorg X server.
3236 This driver supports SiS chipsets of 300/315/330/340 series.")
3237 (license license:bsd-3)))
3238
3239
3240 (define-public xf86-video-suncg6
3241 (package
3242 (name "xf86-video-suncg6")
3243 (version "1.1.2")
3244 (source
3245 (origin
3246 (method url-fetch)
3247 (uri (string-append
3248 "mirror://xorg/individual/driver/xf86-video-suncg6-"
3249 version
3250 ".tar.bz2"))
3251 (sha256
3252 (base32
3253 "04fgwgk02m4nimlv67rrg1wnyahgymrn6rb2cjj1l8bmzkii4glr"))))
3254 (build-system gnu-build-system)
3255 (inputs `(("xorg-server" ,xorg-server)))
3256 (native-inputs `(("pkg-config" ,pkg-config)))
3257 (home-page "https://www.x.org/wiki/")
3258 (synopsis "GX/TurboGX video driver for X server")
3259 (description
3260 "xf86-video-suncg6 is a GX/TurboGX video driver for the Xorg X server.")
3261 (license license:x11)))
3262
3263
3264 (define-public xf86-video-sunffb
3265 (package
3266 (name "xf86-video-sunffb")
3267 (version "1.2.2")
3268 (source
3269 (origin
3270 (method url-fetch)
3271 (uri (string-append
3272 "mirror://xorg/individual/driver/xf86-video-sunffb-"
3273 version
3274 ".tar.bz2"))
3275 (sha256
3276 (base32
3277 "07z3ngifwg2d4jgq8pms47n5lr2yn0ai72g86xxjnb3k20n5ym7s"))))
3278 (build-system gnu-build-system)
3279 (inputs `(("xorg-server" ,xorg-server)))
3280 (native-inputs `(("pkg-config" ,pkg-config)))
3281 (home-page "https://www.x.org/wiki/")
3282 (synopsis "SUNFFB video driver for X server")
3283 (description
3284 "xf86-video-sunffb is a SUNFFB video driver for the Xorg X server.")
3285 (license license:x11)))
3286
3287
3288 (define-public xf86-video-tdfx
3289 (package
3290 (name "xf86-video-tdfx")
3291 (version "1.4.7")
3292 (source
3293 (origin
3294 (method url-fetch)
3295 (uri (string-append
3296 "mirror://xorg/individual/driver/xf86-video-tdfx-"
3297 version
3298 ".tar.bz2"))
3299 (sha256
3300 (base32
3301 "0hia45z4jc472fxp00803nznizcn4h1ybp63jcsb4lmd9vhqxx2c"))))
3302 (build-system gnu-build-system)
3303 (inputs `(("mesa" ,mesa)
3304 ("xf86driproto" ,xf86driproto)
3305 ("xorg-server" ,xorg-server)))
3306 (native-inputs `(("pkg-config" ,pkg-config)))
3307 (home-page "https://www.x.org/wiki/")
3308 (synopsis "3Dfx video driver for X server")
3309 (description
3310 "xf86-video-tdfx is a 3Dfx video driver for the Xorg X server.")
3311 (license license:x11)))
3312
3313
3314 (define-public xf86-video-tga
3315 (package
3316 (name "xf86-video-tga")
3317 (version "1.2.2")
3318 (source
3319 (origin
3320 (method url-fetch)
3321 (uri (string-append
3322 "mirror://xorg/individual/driver/xf86-video-tga-"
3323 version
3324 ".tar.bz2"))
3325 (sha256
3326 (base32
3327 "0cb161lvdgi6qnf1sfz722qn38q7kgakcvj7b45ba3i0020828r0"))
3328 (patches (search-patches "xf86-video-tga-remove-mibstore.patch"))))
3329 (build-system gnu-build-system)
3330 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3331 ("xorg-server" ,xorg-server)))
3332 (native-inputs `(("pkg-config" ,pkg-config)))
3333 (home-page "https://www.x.org/wiki/")
3334 (synopsis "TGA video driver for X server")
3335 (description
3336 "xf86-video-tga is a TGA (DEC 21030) video driver for the Xorg
3337 X server.")
3338 (license license:x11)))
3339
3340
3341 (define-public xf86-video-trident
3342 (package
3343 (name "xf86-video-trident")
3344 (version "1.3.8")
3345 (source
3346 (origin
3347 (method url-fetch)
3348 (uri (string-append
3349 "mirror://xorg/individual/driver/xf86-video-trident-"
3350 version
3351 ".tar.bz2"))
3352 (sha256
3353 (base32
3354 "0gxcar434kx813fxdpb93126lhmkl3ikabaljhcj5qn3fkcijlcy"))))
3355 (build-system gnu-build-system)
3356 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3357 ("xorg-server" ,xorg-server)))
3358 (native-inputs `(("pkg-config" ,pkg-config)))
3359 (home-page "https://www.x.org/wiki/")
3360 (synopsis "Trident video driver for X server")
3361 (description
3362 "xf86-video-trident is a Trident video driver for the Xorg X server.")
3363 (license license:x11)))
3364
3365
3366 ;; no license
3367 ;; (define-public xf86-video-v4l
3368
3369
3370 (define-public xf86-video-vesa
3371 (package
3372 (name "xf86-video-vesa")
3373 (version "2.3.4")
3374 (source
3375 (origin
3376 (method url-fetch)
3377 (uri (string-append
3378 "mirror://xorg/individual/driver/xf86-video-vesa-"
3379 version
3380 ".tar.bz2"))
3381 (sha256
3382 (base32
3383 "1haiw8r1z8ihk68d0jqph2wsld13w4qkl86biq46fvyxg7cg9pbv"))))
3384 (build-system gnu-build-system)
3385 (inputs `(("xorg-server" ,xorg-server)))
3386 (native-inputs `(("pkg-config" ,pkg-config)))
3387 (home-page "https://www.x.org/wiki/")
3388 (synopsis "VESA video driver for X server")
3389 (description
3390 "xf86-video-vesa is a generic VESA video driver for the Xorg
3391 X server.")
3392 (license license:x11)))
3393
3394
3395 (define-public xf86-video-vmware
3396 (package
3397 (name "xf86-video-vmware")
3398 (version "13.2.1")
3399 (source
3400 (origin
3401 (method url-fetch)
3402 (uri (string-append
3403 "mirror://xorg/individual/driver/xf86-video-vmware-"
3404 version
3405 ".tar.bz2"))
3406 (sha256
3407 (base32
3408 "0azn3g0vcki47n5jddagk2rmbwdvp845k8p7d2r56zxs3w8ggxz2"))))
3409 (build-system gnu-build-system)
3410 (inputs
3411 `(("libx11" ,libx11)
3412 ("libxext" ,libxext)
3413 ("llvm" ,llvm)
3414 ("mesa" ,mesa) ; for xatracker
3415 ("xorg-server" ,xorg-server)))
3416 (native-inputs
3417 `(("eudev" ,eudev)
3418 ("pkg-config" ,pkg-config)))
3419 (home-page "https://www.x.org/wiki/")
3420 (synopsis "VMware SVGA video driver for X server")
3421 (description
3422 "xf86-video-vmware is a VMware SVGA video driver for the Xorg X server.")
3423 (license license:x11)))
3424
3425
3426 (define-public xf86-video-voodoo
3427 (package
3428 (name "xf86-video-voodoo")
3429 (version "1.2.5")
3430 (source
3431 (origin
3432 (method url-fetch)
3433 (uri (string-append
3434 "mirror://xorg/individual/driver/xf86-video-voodoo-"
3435 version
3436 ".tar.bz2"))
3437 (sha256
3438 (base32
3439 "1s6p7yxmi12q4y05va53rljwyzd6ry492r1pgi7wwq6cznivhgly"))
3440 (patches
3441 (list (origin
3442 (method url-fetch)
3443 (uri "https://cgit.freedesktop.org/xorg/driver/\
3444 xf86-video-voodoo/patch/?id=9172ae566a0e85313fc80ab62b4455393eefe593")
3445 (sha256
3446 (base32
3447 "0rndmxf5b8j3hjnhrwrnzsq5024fli134fj1mprhkcrvax2zq8db"))
3448 (file-name "xf86-video-voodoo-pcitag.patch"))))))
3449 (build-system gnu-build-system)
3450 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3451 ("xorg-server" ,xorg-server)))
3452 (native-inputs `(("pkg-config" ,pkg-config)))
3453 (home-page "https://www.x.org/wiki/")
3454 (synopsis "Voodoo/Voodoo2 video driver for X server")
3455 (description
3456 "xf86-video-voodoo is a Voodoo video driver for the Xorg X server.")
3457 (license license:x11)))
3458
3459
3460 ;; Only relevant for the frame buffer on BSD systems.
3461 ;; (define-public xf86-video-wsfb
3462
3463
3464 (define-public xf86bigfontproto
3465 (package
3466 (name "xf86bigfontproto")
3467 (version "1.2.0")
3468 (source
3469 (origin
3470 (method url-fetch)
3471 (uri (string-append
3472 "mirror://xorg/individual/proto/xf86bigfontproto-"
3473 version
3474 ".tar.bz2"))
3475 (sha256
3476 (base32
3477 "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
3478 (build-system gnu-build-system)
3479 (home-page "https://www.x.org/wiki/")
3480 (synopsis "Xorg XF86BigFontProto protocol headers")
3481 (description
3482 "XFree86 Bigfont Extension contains header files and documentation
3483 for the XF86BigFontProto protocol.")
3484 (license license:x11)))
3485
3486
3487 (define-public xf86dgaproto
3488 (package
3489 (name "xf86dgaproto")
3490 (version "2.1")
3491 (source
3492 (origin
3493 (method url-fetch)
3494 (uri (string-append
3495 "mirror://xorg/individual/proto/xf86dgaproto-"
3496 version
3497 ".tar.bz2"))
3498 (sha256
3499 (base32
3500 "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
3501 (build-system gnu-build-system)
3502 (home-page "https://www.x.org/wiki/")
3503 (synopsis "Xorg XF86DGAProto protocol headers")
3504 (description
3505 "XFree86 Direct Graphic Access Extension defines a protocol for
3506 direct linear framebuffer access.")
3507 (license license:x11)))
3508
3509
3510 (define-public xf86driproto
3511 (package
3512 (name "xf86driproto")
3513 (version "2.1.1")
3514 (source
3515 (origin
3516 (method url-fetch)
3517 (uri (string-append
3518 "mirror://xorg/individual/proto/xf86driproto-"
3519 version
3520 ".tar.bz2"))
3521 (sha256
3522 (base32
3523 "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
3524 (build-system gnu-build-system)
3525 (home-page "https://www.x.org/wiki/")
3526 (synopsis "Xorg XF86DRIProto protocol headers")
3527 (description
3528 "XFree86 Direct Rendering Infrastructure Extension defines a
3529 protocol to allow user applications to access the video hardware without
3530 requiring data to be passed through the X server.")
3531 (license license:x11)))
3532
3533
3534 (define-public xf86vidmodeproto
3535 (package
3536 (name "xf86vidmodeproto")
3537 (version "2.3.1")
3538 (source
3539 (origin
3540 (method url-fetch)
3541 (uri (string-append
3542 "mirror://xorg/individual/proto/xf86vidmodeproto-"
3543 version
3544 ".tar.bz2"))
3545 (sha256
3546 (base32
3547 "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
3548 (build-system gnu-build-system)
3549 (home-page "https://www.x.org/wiki/")
3550 (synopsis "Xorg XF86VidModeProto protocol headers")
3551 (description
3552 "XFree86 Video Mode Extension defines a protocol for dynamically
3553 configuring modelines and gamma.")
3554 (license license:x11)))
3555
3556
3557 (define-public xgamma
3558 (package
3559 (name "xgamma")
3560 (version "1.0.6")
3561 (source
3562 (origin
3563 (method url-fetch)
3564 (uri (string-append
3565 "mirror://xorg/individual/app/xgamma-"
3566 version
3567 ".tar.bz2"))
3568 (sha256
3569 (base32
3570 "1lr2nb1fhg5fk2fchqxdxyl739602ggwhmgl2wiv5c8qbidw7w8f"))))
3571 (build-system gnu-build-system)
3572 (inputs
3573 `(("libxxf86vm" ,libxxf86vm)
3574 ("libx11" ,libx11)))
3575 (native-inputs
3576 `(("pkg-config" ,pkg-config)))
3577 (home-page "https://www.x.org/wiki/")
3578 (synopsis "Alter a monitor's gamma correction")
3579 (description
3580 "XGamma is used to query and alter the gamma correction of a
3581 monitor via the X video mode extension.")
3582 (license license:x11)))
3583
3584
3585 (define-public xhost
3586 (package
3587 (name "xhost")
3588 (version "1.0.7")
3589 (source
3590 (origin
3591 (method url-fetch)
3592 (uri (string-append
3593 "mirror://xorg/individual/app/xhost-"
3594 version
3595 ".tar.bz2"))
3596 (sha256
3597 (base32
3598 "16n26xw6l01zq31d4qvsaz50misvizhn7iihzdn5f7s72pp1krlk"))))
3599 (build-system gnu-build-system)
3600 (inputs
3601 `(("libxmu" ,libxmu)
3602 ("libxau" ,libxau)
3603 ("libx11" ,libx11)))
3604 (native-inputs
3605 `(("pkg-config" ,pkg-config)))
3606 (home-page "https://www.x.org/wiki/")
3607 (synopsis "Xorg server access control utility")
3608 (description
3609 "XHost is used to manage the list of host names or user names
3610 allowed to make connections to the X server.")
3611 (license license:x11)))
3612
3613
3614 (define-public xineramaproto
3615 (package
3616 (name "xineramaproto")
3617 (version "1.2.1")
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (string-append
3622 "mirror://xorg/individual/proto/xineramaproto-"
3623 version
3624 ".tar.bz2"))
3625 (sha256
3626 (base32
3627 "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
3628 (build-system gnu-build-system)
3629 (native-inputs `(("pkg-config" ,pkg-config)))
3630 (home-page "https://www.x.org/wiki/")
3631 (synopsis "Xorg XineramaProto protocol headers")
3632 (description
3633 "Xinerama Extension allows clients to query information about multiple
3634 physical screens controlled by a single X server that appear as a single
3635 screen to core X11 protocol operations.
3636
3637 This extension provides a common network protocol for querying information
3638 which may be provided by different underlying screen combination
3639 technologies in the X server, such as the original Xinerama multiplexer, or
3640 alternative implementations like XRandR or TwinView.")
3641 (license license:x11)))
3642
3643
3644 (define-public xinput
3645 (package
3646 (name "xinput")
3647 (version "1.6.2")
3648 (source
3649 (origin
3650 (method url-fetch)
3651 (uri (string-append
3652 "mirror://xorg/individual/app/xinput-"
3653 version
3654 ".tar.bz2"))
3655 (sha256
3656 (base32
3657 "1i75mviz9dyqyf7qigzmxq8vn31i86aybm662fzjz5c086dx551n"))))
3658 (build-system gnu-build-system)
3659 (inputs
3660 `(("libxrender" ,libxrender)
3661 ("libxrandr" ,libxrandr)
3662 ("libxinerama" ,libxinerama)
3663 ("libxext" ,libxext)
3664 ("libxi" ,libxi)
3665 ("libx11" ,libx11)
3666 ("inputproto" ,inputproto)))
3667 (native-inputs
3668 `(("pkg-config" ,pkg-config)))
3669 (home-page "https://www.x.org/wiki/")
3670 (synopsis "Configure input devices for X server")
3671 (description
3672 "XInput is used to configure and test XInput devices.")
3673 (license license:x11)))
3674
3675
3676 (define xkbcomp-intermediate ; used as input for xkeyboard-config
3677 (package
3678 (name "xkbcomp-intermediate")
3679 (version "1.4.0")
3680 (source
3681 (origin
3682 (method url-fetch)
3683 (uri (string-append
3684 "mirror://xorg/individual/app/xkbcomp-"
3685 version
3686 ".tar.bz2"))
3687 (sha256
3688 (base32
3689 "0syfc6zscvai824mzihlnrqxhkcr27dzkpy8zndavi83iischsdw"))))
3690 (build-system gnu-build-system)
3691 (inputs
3692 `(("xproto" ,xproto)
3693 ("libxkbfile" ,libxkbfile)
3694 ("libx11" ,libx11)))
3695 (native-inputs
3696 `(("pkg-config" ,pkg-config)))
3697 (home-page "https://www.x.org/wiki/")
3698 (synopsis "Compile XKB keyboard description")
3699 (description
3700 "xkbcomp keymap compiler converts a description of an XKB keymap
3701 into one of several output formats. The most common use for xkbcomp is
3702 to create a compiled keymap file (.xkm extension) which can be read
3703 directly by XKB- capable X servers or utilities.
3704
3705 X Keyboard (XKB) Extension essentially replaces the core protocol
3706 definition of keyboard. The extension makes possible to clearly and
3707 explicitly specify most aspects of keyboard behaviour on per-key basis
3708 and to more closely track the logical and physical state of the
3709 keyboard. It also includes a number of keyboard controls designed to
3710 make keyboards more accessible to people with physical impairments.")
3711 (license license:x11)))
3712
3713 (define-public xkbcomp ; using xkeyboard-config as input
3714 (package (inherit xkbcomp-intermediate)
3715 (name "xkbcomp")
3716 (inputs
3717 `(,@(package-inputs xkbcomp-intermediate)
3718 ("xkeyboard-config" ,xkeyboard-config)))
3719 (arguments
3720 `(#:configure-flags
3721 (list (string-append "--with-xkb-config-root="
3722 (assoc-ref %build-inputs "xkeyboard-config")
3723 "/share/X11/xkb"))))))
3724
3725
3726 (define-public xkbevd
3727 (package
3728 (name "xkbevd")
3729 (version "1.1.4")
3730 (source
3731 (origin
3732 (method url-fetch)
3733 (uri (string-append
3734 "mirror://xorg/individual/app/xkbevd-"
3735 version
3736 ".tar.bz2"))
3737 (sha256
3738 (base32
3739 "0sprjx8i86ljk0l7ldzbz2xlk8916z5zh78cafjv8k1a63js4c14"))))
3740 (build-system gnu-build-system)
3741 (inputs
3742 `(("libxkbfile" ,libxkbfile)
3743 ("libx11" ,libx11)))
3744 (native-inputs
3745 `(("pkg-config" ,pkg-config)))
3746 (home-page "https://www.x.org/wiki/")
3747 (synopsis "XKB event daemon demo")
3748 (description
3749 "XKB event daemon listens for the specified XKB events and executes
3750 requested commands if they occur.")
3751 (license license:x11)))
3752
3753
3754 (define-public xkbutils
3755 (package
3756 (name "xkbutils")
3757 (version "1.0.4")
3758 (source
3759 (origin
3760 (method url-fetch)
3761 (uri (string-append
3762 "mirror://xorg/individual/app/xkbutils-"
3763 version
3764 ".tar.bz2"))
3765 (sha256
3766 (base32
3767 "0c412isxl65wplhl7nsk12vxlri29lk48g3p52hbrs3m0awqm8fj"))))
3768 (build-system gnu-build-system)
3769 (inputs
3770 `(("libxt" ,libxt)
3771 ("xproto" ,xproto)
3772 ("libxaw" ,libxaw)
3773 ("inputproto" ,inputproto)))
3774 (native-inputs
3775 `(("pkg-config" ,pkg-config)))
3776 (home-page "https://www.x.org/wiki/")
3777 (synopsis "XKB utilities")
3778 (description
3779 "XKBUtils is a collection of small utilities for X Keyboard (XKB)
3780 extension to the X11 protocol. It includes:
3781
3782 - xkbbell: generate XKB bell events;
3783
3784 - xkbvleds: display the state of LEDs on an XKB keyboard in a window;
3785
3786 - xkbwatch: reports changes in the XKB keyboard state.")
3787 (license license:x11)))
3788
3789
3790 (define-public xkeyboard-config
3791 (package
3792 (name "xkeyboard-config")
3793 (version "2.20")
3794 (source
3795 (origin
3796 (method url-fetch)
3797 (uri (string-append
3798 "mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-"
3799 version
3800 ".tar.bz2"))
3801 (sha256
3802 (base32
3803 "0d619g4r0w1f6q5qmaqjnsc0956gi02fqgpisqffzqy4acjwggyi"))))
3804 (build-system gnu-build-system)
3805 (inputs
3806 `(("gettext" ,gettext-minimal)
3807 ("libx11" ,libx11)
3808 ("xkbcomp-intermediate" ,xkbcomp-intermediate)))
3809 (native-inputs
3810 `(("intltool" ,intltool)
3811 ("pkg-config" ,pkg-config)))
3812 (home-page "https://www.x.org/wiki/")
3813 (synopsis "Xorg XKB configuration files")
3814 (description
3815 "xkeyboard-config provides a database for X Keyboard (XKB) Extension.
3816 There are five components that define a complete keyboard mapping:
3817 symbols, geometry, keycodes, compat, and types; these five components
3818 can be combined together using the 'rules' component of this database.")
3819 (license license:x11)))
3820
3821
3822 (define-public xkill
3823 (package
3824 (name "xkill")
3825 (version "1.0.4")
3826 (source
3827 (origin
3828 (method url-fetch)
3829 (uri (string-append
3830 "mirror://xorg/individual/app/xkill-"
3831 version
3832 ".tar.bz2"))
3833 (sha256
3834 (base32
3835 "0bl1ky8ps9jg842j4mnmf4zbx8nkvk0h77w7bqjlpwij9wq2mvw8"))))
3836 (build-system gnu-build-system)
3837 (inputs
3838 `(("libxmu" ,libxmu)
3839 ("libx11" ,libx11)))
3840 (native-inputs
3841 `(("pkg-config" ,pkg-config)))
3842 (home-page "https://www.x.org/wiki/")
3843 (synopsis "Kill a client by its X resource")
3844 (description
3845 "XKill is used to force the X server to close connections to
3846 clients. This program is very dangerous, but is useful for aborting
3847 programs that have displayed undesired windows on a user's screen.")
3848 (license license:x11)))
3849
3850
3851 (define-public xlsatoms
3852 (package
3853 (name "xlsatoms")
3854 (version "1.1.2")
3855 (source
3856 (origin
3857 (method url-fetch)
3858 (uri (string-append
3859 "mirror://xorg/individual/app/xlsatoms-"
3860 version
3861 ".tar.bz2"))
3862 (sha256
3863 (base32
3864 "196yjik910xsr7dwy8daa0amr0r22ynfs360z0ndp9mx7mydrra7"))))
3865 (build-system gnu-build-system)
3866 (inputs
3867 `(("libxcb" ,libxcb)))
3868 (native-inputs
3869 `(("pkg-config" ,pkg-config)))
3870 (home-page "https://www.x.org/wiki/")
3871 (synopsis "List interned X server atoms")
3872 (description
3873 "XLsAtoms is used to list the interned atoms defined on X server.")
3874 (license license:x11)))
3875
3876
3877 (define-public xlsclients
3878 (package
3879 (name "xlsclients")
3880 (version "1.1.3")
3881 (source
3882 (origin
3883 (method url-fetch)
3884 (uri (string-append
3885 "mirror://xorg/individual/app/xlsclients-"
3886 version
3887 ".tar.bz2"))
3888 (sha256
3889 (base32
3890 "0g9x7rrggs741x9xwvv1k9qayma980d88nhdqw7j3pn3qvy6d5jx"))))
3891 (build-system gnu-build-system)
3892 (inputs
3893 `(("libxcb" ,libxcb)))
3894 (native-inputs
3895 `(("pkg-config" ,pkg-config)))
3896 (home-page "https://www.x.org/wiki/")
3897 (synopsis "List client applications running on a display")
3898 (description
3899 "XLsClients is used to list information about the client programs
3900 running on X server.")
3901 (license license:x11)))
3902
3903
3904 (define-public xlsfonts
3905 (package
3906 (name "xlsfonts")
3907 (version "1.0.5")
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (string-append
3912 "mirror://xorg/individual/app/xlsfonts-"
3913 version
3914 ".tar.bz2"))
3915 (sha256
3916 (base32
3917 "1yi774g6r1kafsbnxbkrwyndd3i60362ck1fps9ywz076pn5naa0"))))
3918 (build-system gnu-build-system)
3919 (inputs
3920 `(("xproto" ,xproto)
3921 ("libx11" ,libx11)))
3922 (native-inputs
3923 `(("pkg-config" ,pkg-config)))
3924 (home-page "https://www.x.org/wiki/")
3925 (synopsis "List fonts available from an X server")
3926 (description
3927 "xlsfonts lists fonts available from an X server via the X11 core
3928 protocol.")
3929 (license license:x11)))
3930
3931 (define-public xfontsel
3932 (package
3933 (name "xfontsel")
3934 (version "1.0.5")
3935 (source (origin
3936 (method url-fetch)
3937 (uri (string-append
3938 "mirror://xorg/individual/app/xfontsel-"
3939 version ".tar.bz2"))
3940 (sha256
3941 (base32
3942 "1grir464hy52a71r3mpm9mzvkf7nwr3vk0b1vc27pd3gp588a38p"))))
3943 (build-system gnu-build-system)
3944 (arguments
3945 `(#:configure-flags
3946 (list (string-append "--with-appdefaultdir="
3947 %output ,%app-defaults-dir))))
3948 (inputs
3949 `(("libx11" ,libx11)
3950 ("libxaw" ,libxaw)
3951 ("libxmu" ,libxmu)
3952 ("libxt" ,libxt)))
3953 (native-inputs
3954 `(("pkg-config" ,pkg-config)))
3955 (home-page "https://www.x.org/wiki/")
3956 (synopsis "Browse and select X font names")
3957 (description
3958 "XFontSel provides a simple way to display the X11 core protocol fonts
3959 known to your X server, examine samples of each, and retrieve the X Logical
3960 Font Description (XLFD) full name for a font.")
3961 (license license:x11)))
3962
3963 (define-public xfd
3964 (package
3965 (name "xfd")
3966 (version "1.1.2")
3967 (source (origin
3968 (method url-fetch)
3969 (uri (string-append
3970 "mirror://xorg/individual/app/xfd-"
3971 version ".tar.bz2"))
3972 (sha256
3973 (base32
3974 "0n97iqqap9wyxjan2n520vh4rrf5bc0apsw2k9py94dqzci258y1"))))
3975 (build-system gnu-build-system)
3976 (arguments
3977 `(#:configure-flags
3978 (list (string-append "--with-appdefaultdir="
3979 %output ,%app-defaults-dir))))
3980 (inputs
3981 `(("fontconfig" ,fontconfig)
3982 ("libx11" ,libx11)
3983 ("libxaw" ,libxaw)
3984 ("libxft" ,libxft)
3985 ("libxmu" ,libxmu)
3986 ("libxrender" ,libxrender)))
3987 (native-inputs
3988 `(("gettext" ,gettext-minimal)
3989 ("pkg-config" ,pkg-config)))
3990 (home-page "https://www.x.org/wiki/")
3991 (synopsis "Display all the characters in an X font")
3992 (description
3993 "XFD (X Font Display) package provides an utility that displays a
3994 window containing the name of the font being displayed, a row of command
3995 buttons, several lines of text for displaying character metrics, and a grid
3996 containing one glyph per cell.")
3997 (license license:x11)))
3998
3999 (define-public xmodmap
4000 (package
4001 (name "xmodmap")
4002 (version "1.0.9")
4003 (source
4004 (origin
4005 (method url-fetch)
4006 (uri (string-append
4007 "mirror://xorg/individual/app/xmodmap-"
4008 version
4009 ".tar.bz2"))
4010 (sha256
4011 (base32
4012 "0y649an3jqfq9klkp9y5gj20xb78fw6g193f5mnzpl0hbz6fbc5p"))
4013 (patches (search-patches "xmodmap-asprintf.patch"))))
4014 (build-system gnu-build-system)
4015 (inputs
4016 `(("xproto" ,xproto)
4017 ("libx11" ,libx11)))
4018 (native-inputs
4019 `(("pkg-config" ,pkg-config)))
4020 (home-page "https://www.x.org/wiki/")
4021 (synopsis "Modify keymaps and button mappings on X server")
4022 (description
4023 "Xmodmap is used to display and edit the keyboard modifier map and
4024 keymap table that are used by client programs running on X server to
4025 convert event keycodes into keysyms. It is usually run from the user's
4026 session startup script to configure the keyboard according to personal
4027 tastes.")
4028 (license license:x11)))
4029
4030
4031 ;; no license
4032 ;; (define-public xorg-docs
4033
4034
4035 (define-public xorg-sgml-doctools
4036 (package
4037 (name "xorg-sgml-doctools")
4038 (version "1.11")
4039 (source
4040 (origin
4041 (method url-fetch)
4042 (uri (string-append
4043 "mirror://xorg/individual/doc/xorg-sgml-doctools-"
4044 version
4045 ".tar.bz2"))
4046 (sha256
4047 (base32
4048 "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
4049 (build-system gnu-build-system)
4050 (native-inputs `(("pkg-config" ,pkg-config)))
4051 (home-page "https://www.x.org/wiki/")
4052 (synopsis "Xorg SGML documentation tools")
4053 (description
4054 "This package provides a common set of SGML entities and XML/CSS style
4055 sheets used in building/formatting the documentation provided in other
4056 Xorg packages. It's typically only needed by people building from
4057 source who want to produce formatted documentation from their builds, or
4058 those who have installed the HTML version of the documentation, which
4059 refers to the included common xorg.css stylesheet.")
4060 (license license:x11)))
4061
4062
4063 (define-public xpr
4064 (package
4065 (name "xpr")
4066 (version "1.0.4")
4067 (source
4068 (origin
4069 (method url-fetch)
4070 (uri (string-append
4071 "mirror://xorg/individual/app/xpr-"
4072 version
4073 ".tar.bz2"))
4074 (sha256
4075 (base32
4076 "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
4077 (build-system gnu-build-system)
4078 (inputs
4079 `(("xproto" ,xproto)
4080 ("libxmu" ,libxmu)
4081 ("libx11" ,libx11)))
4082 (native-inputs
4083 `(("pkg-config" ,pkg-config)))
4084 (home-page "https://www.x.org/wiki/")
4085 (synopsis "Print an X window dump from xwd")
4086 (description
4087 "XPr takes as input a window dump file produced by xwd and formats
4088 it for output on various types of printers.")
4089 (license license:x11)))
4090
4091
4092 (define-public xprop
4093 (package
4094 (name "xprop")
4095 (version "1.2.2")
4096 (source
4097 (origin
4098 (method url-fetch)
4099 (uri (string-append
4100 "mirror://xorg/individual/app/xprop-"
4101 version
4102 ".tar.bz2"))
4103 (sha256
4104 (base32
4105 "1ilvhqfjcg6f1hqahjkp8qaay9rhvmv2blvj3w9asraq0aqqivlv"))))
4106 (build-system gnu-build-system)
4107 (inputs
4108 `(("xproto" ,xproto)
4109 ("libx11" ,libx11)))
4110 (native-inputs
4111 `(("pkg-config" ,pkg-config)))
4112 (home-page "https://www.x.org/wiki/")
4113 (synopsis "Display X server properties")
4114 (description
4115 "xprop is used to display and/or set window and font properties of
4116 an X server.")
4117 (license license:x11)))
4118
4119
4120 (define-public xrandr
4121 (package
4122 (name "xrandr")
4123 (version "1.5.0")
4124 (source
4125 (origin
4126 (method url-fetch)
4127 (uri (string-append
4128 "mirror://xorg/individual/app/xrandr-"
4129 version ".tar.bz2"))
4130 (sha256
4131 (base32
4132 "1kaih7rmzxr1vp5a5zzjhm5x7dn9mckya088sqqw026pskhx9ky1"))))
4133 (build-system gnu-build-system)
4134 (inputs
4135 `(("libxrender" ,libxrender)
4136 ("libxrandr" ,libxrandr)
4137 ("xproto" ,xproto)
4138 ("libx11" ,libx11)))
4139 (native-inputs
4140 `(("pkg-config" ,pkg-config)))
4141 (home-page "https://www.x.org/wiki/")
4142 (synopsis "Command line interface to X RandR extension")
4143 (description
4144 "xrandr - primitive command line interface to X11 Resize, Rotate,
4145 and Reflect (RandR) extension.")
4146 (license license:x11)))
4147
4148
4149 (define-public xrdb
4150 (package
4151 (name "xrdb")
4152 (version "1.1.0")
4153 (source
4154 (origin
4155 (method url-fetch)
4156 (uri (string-append
4157 "mirror://xorg/individual/app/xrdb-"
4158 version
4159 ".tar.bz2"))
4160 (sha256
4161 (base32
4162 "0nsnr90wazcdd50nc5dqswy0bmq6qcj14nnrhyi7rln9pxmpp0kk"))))
4163 (build-system gnu-build-system)
4164 (inputs
4165 `(("libxmu" ,libxmu)
4166 ("libx11" ,libx11)))
4167 (native-inputs
4168 `(("pkg-config" ,pkg-config)))
4169 (home-page "https://www.x.org/wiki/")
4170 (synopsis "X server resource database utility")
4171 (description
4172 "XRDB is used to get or set the contents of the RESOURCE_MANAGER
4173 property on the root window of screen 0, or the SCREEN_RESOURCES
4174 property on the root window of any or all screens, or everything
4175 combined. You would normally run this program from your X startup
4176 file.")
4177 (license license:x11)))
4178
4179
4180 (define-public xrefresh
4181 (package
4182 (name "xrefresh")
4183 (version "1.0.5")
4184 (source
4185 (origin
4186 (method url-fetch)
4187 (uri (string-append
4188 "mirror://xorg/individual/app/xrefresh-"
4189 version
4190 ".tar.bz2"))
4191 (sha256
4192 (base32
4193 "1mlinwgvql6s1rbf46yckbfr9j22d3c3z7jx3n6ix7ca18dnf4rj"))))
4194 (build-system gnu-build-system)
4195 (inputs
4196 `(("libx11" ,libx11)))
4197 (native-inputs
4198 `(("pkg-config" ,pkg-config)))
4199 (home-page "https://www.x.org/wiki/")
4200 (synopsis "Refresh all or part of an X screen")
4201 (description
4202 "Xrefresh is a simple X program that causes all or part of your
4203 screen to be repainted. This is useful when system messages have messed
4204 up your screen.")
4205 (license license:x11)))
4206
4207
4208 (define-public xset
4209 (package
4210 (name "xset")
4211 (version "1.2.3")
4212 (source
4213 (origin
4214 (method url-fetch)
4215 (uri (string-append
4216 "mirror://xorg/individual/app/xset-"
4217 version
4218 ".tar.bz2"))
4219 (sha256
4220 (base32
4221 "0qw0iic27bz3yz2wynf1gxs70hhkcf9c4jrv7zhlg1mq57xz90j3"))))
4222 (build-system gnu-build-system)
4223 (inputs
4224 `(("xproto" ,xproto)
4225 ("libxmu" ,libxmu)
4226 ("libxext" ,libxext)
4227 ("libx11" ,libx11)))
4228 (native-inputs
4229 `(("pkg-config" ,pkg-config)))
4230 (home-page "https://www.x.org/wiki/")
4231 (synopsis "User preference utility for X server")
4232 (description
4233 "XSet is used to set various user preference options of the display.")
4234 (license license:x11)))
4235
4236
4237 (define-public xsetroot
4238 (package
4239 (name "xsetroot")
4240 (version "1.1.1")
4241 (source
4242 (origin
4243 (method url-fetch)
4244 (uri (string-append
4245 "mirror://xorg/individual/app/xsetroot-"
4246 version
4247 ".tar.bz2"))
4248 (sha256
4249 (base32
4250 "1nf3ii31m1knimbidaaym8p61fq3blv8rrdr2775yhcclym5s8ds"))))
4251 (build-system gnu-build-system)
4252 (inputs
4253 `(("libxmu" ,libxmu)
4254 ("libxcursor" ,libxcursor)
4255 ("xbitmaps" ,xbitmaps)))
4256 (native-inputs
4257 `(("pkg-config" ,pkg-config)))
4258 (home-page "https://www.x.org/wiki/")
4259 (synopsis "Root window parameter setting utility for X server")
4260 (description
4261 "XSetRoot allows you to tailor the appearance of the root window on
4262 a display running X server.")
4263 (license license:x11)))
4264
4265
4266 (define-public xtrans
4267 (package
4268 (name "xtrans")
4269 (version "1.3.5")
4270 (source
4271 (origin
4272 (method url-fetch)
4273 (uri (string-append
4274 "mirror://xorg/individual/lib/xtrans-"
4275 version
4276 ".tar.bz2"))
4277 (sha256
4278 (base32
4279 "00c3ph17acnsch3gbdmx33b9ifjnl5w7vx8hrmic1r1cjcv3pgdd"))))
4280 (build-system gnu-build-system)
4281 (native-inputs `(("pkg-config" ,pkg-config)))
4282 (home-page "https://www.x.org/wiki/")
4283 (synopsis "Xorg Network Transport layer library")
4284 (description
4285 "Xtrans is a library of code that is shared among various X packages to
4286 handle network protocol transport in a modular fashion, allowing a single
4287 place to add new transport types. It is used by the X server, libX11,
4288 libICE, the X font server, and related components.")
4289 (license license:x11)))
4290
4291
4292 (define-public xvinfo
4293 (package
4294 (name "xvinfo")
4295 (version "1.1.3")
4296 (source
4297 (origin
4298 (method url-fetch)
4299 (uri (string-append
4300 "mirror://xorg/individual/app/xvinfo-"
4301 version
4302 ".tar.bz2"))
4303 (sha256
4304 (base32
4305 "1sz5wqhxd1fqsfi1w5advdlwzkizf2fgl12hdpk66f7mv9l8pflz"))))
4306 (build-system gnu-build-system)
4307 (inputs
4308 `(("libxext" ,libxext)
4309 ("libxv" ,libxv)
4310 ("libx11" ,libx11)))
4311 (native-inputs
4312 `(("pkg-config" ,pkg-config)))
4313 (home-page "https://www.x.org/wiki/")
4314 (synopsis "Print out X-Video extension adaptor information")
4315 (description
4316 "XVInfo is used to print out the capabilities of any video adaptors
4317 associated with the display that are accessible through the X-Video
4318 extension.")
4319 (license license:x11)))
4320
4321
4322 (define-public xwd
4323 (package
4324 (name "xwd")
4325 (version "1.0.6")
4326 (source
4327 (origin
4328 (method url-fetch)
4329 (uri (string-append
4330 "mirror://xorg/individual/app/xwd-"
4331 version
4332 ".tar.bz2"))
4333 (sha256
4334 (base32
4335 "0ybx48agdvjp9lgwvcw79r1x6jbqbyl3fliy3i5xwy4d4si9dcrv"))))
4336 (build-system gnu-build-system)
4337 (inputs
4338 `(("libxt" ,libxt)
4339 ("libxkbfile" ,libxkbfile)
4340 ("xproto" ,xproto)))
4341 (native-inputs
4342 `(("pkg-config" ,pkg-config)))
4343 (home-page "https://www.x.org/wiki/")
4344 (synopsis "Dump current contents of X window or screen to file")
4345 (description
4346 "Xwd is used to store window images in a specially formatted dump
4347 file. This file can then be read by various other X utilities for
4348 redisplay, printing, editing, formatting, archiving, image processing,
4349 etc. The target window is selected by clicking the pointer in the
4350 desired window. The keyboard bell is rung once at the beginning of the
4351 dump and twice whenthe dump is completed.")
4352 (license license:x11)))
4353
4354
4355 (define-public xwininfo
4356 (package
4357 (name "xwininfo")
4358 (version "1.1.3")
4359 (source
4360 (origin
4361 (method url-fetch)
4362 (uri (string-append
4363 "mirror://xorg/individual/app/xwininfo-"
4364 version
4365 ".tar.bz2"))
4366 (sha256
4367 (base32
4368 "1y1zn8ijqslb5lfpbq4bb78kllhch8in98ps7n8fg3dxjpmb13i1"))))
4369 (build-system gnu-build-system)
4370 (inputs
4371 `(("libx11" ,libx11)
4372 ("xproto" ,xproto)))
4373 (native-inputs
4374 `(("pkg-config" ,pkg-config)))
4375 (home-page "https://www.x.org/wiki/")
4376 (synopsis "Window information utility for X server")
4377 (description
4378 "XWinInfo is used to print out information about windows on an X server.
4379 Various information is displayed depending on which options are selected.")
4380 (license license:x11)))
4381
4382
4383 (define-public xwud
4384 (package
4385 (name "xwud")
4386 (version "1.0.4")
4387 (source
4388 (origin
4389 (method url-fetch)
4390 (uri (string-append
4391 "mirror://xorg/individual/app/xwud-"
4392 version
4393 ".tar.bz2"))
4394 (sha256
4395 (base32
4396 "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
4397 (build-system gnu-build-system)
4398 (inputs
4399 `(("xproto" ,xproto)
4400 ("libx11" ,libx11)))
4401 (native-inputs
4402 `(("pkg-config" ,pkg-config)))
4403 (home-page "https://www.x.org/wiki/")
4404 (synopsis "Display an X window dump from xwd")
4405 (description
4406 "Xwud is used to display in a window an image saved in a specially
4407 formatted dump file, such as produced by xwd.")
4408 (license license:x11)))
4409
4410 (define-public xorg-rgb
4411 (package
4412 (name "xorg-rgb")
4413 (version "1.0.6")
4414 (source
4415 (origin
4416 (method url-fetch)
4417 (uri (string-append
4418 "mirror://xorg/individual/app/rgb-"
4419 version
4420 ".tar.bz2"))
4421 (sha256
4422 (base32
4423 "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv"))))
4424 (build-system gnu-build-system)
4425 (inputs
4426 `(("xproto" ,xproto)))
4427 (native-inputs
4428 `(("pkg-config" ,pkg-config)))
4429 (home-page "http://www.x.org/wiki/")
4430 (synopsis "X color name database")
4431 (description
4432 "This package provides the X color name database.")
4433 (license license:x11)))
4434
4435 ;; packages of height 1 in the propagated-inputs tree
4436
4437 (define-public fixesproto
4438 (package
4439 (name "fixesproto")
4440 (version "5.0")
4441 (source
4442 (origin
4443 (method url-fetch)
4444 (uri (string-append
4445 "mirror://xorg/individual/proto/fixesproto-"
4446 version
4447 ".tar.bz2"))
4448 (sha256
4449 (base32
4450 "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
4451 (build-system gnu-build-system)
4452 (propagated-inputs
4453 `(("xextproto" ,xextproto)))
4454 (native-inputs
4455 `(("pkg-config" ,pkg-config)))
4456 (home-page "https://www.x.org/wiki/")
4457 (synopsis "Xorg FixesProto protocol headers")
4458 (description
4459 "Fixes Extension makes changes to many areas of the protocol to resolve
4460 issues raised by application interaction with core protocol mechanisms that
4461 cannot be adequately worked around on the client side of the wire.")
4462 (license license:x11)))
4463
4464
4465 (define-public libxdamage
4466 (package
4467 (name "libxdamage")
4468 (version "1.1.4")
4469 (source
4470 (origin
4471 (method url-fetch)
4472 (uri (string-append
4473 "mirror://xorg/individual/lib/libXdamage-"
4474 version
4475 ".tar.bz2"))
4476 (sha256
4477 (base32
4478 "1bamagq7g6s0d23l8rb3nppj8ifqj05f7z9bhbs4fdg8az3ffgvw"))))
4479 (build-system gnu-build-system)
4480 (propagated-inputs
4481 ;; These are all in the Requires or Requires.private field of xdamage.pc
4482 `(("damageproto" ,damageproto)
4483 ("libxfixes" ,libxfixes)
4484 ("xproto" ,xproto)
4485 ("libx11" ,libx11)))
4486 (native-inputs
4487 `(("pkg-config" ,pkg-config)))
4488 (home-page "https://www.x.org/wiki/")
4489 (synopsis "Xorg Damage Extension library")
4490 (description "Xorg library for the XDamage extension.")
4491 (license license:x11)))
4492
4493
4494 (define-public libxext
4495 (package
4496 (name "libxext")
4497 (version "1.3.3")
4498 (source
4499 (origin
4500 (method url-fetch)
4501 (uri (string-append
4502 "mirror://xorg/individual/lib/libXext-"
4503 version
4504 ".tar.bz2"))
4505 (sha256
4506 (base32
4507 "0dbfn5bznnrhqzvkrcmw4c44yvvpwdcsrvzxf4rk27r36b9x865m"))))
4508 (build-system gnu-build-system)
4509 (propagated-inputs
4510 `(("xextproto" ,xextproto)))
4511 (inputs
4512 `(("libxau" ,libxau)
4513 ("libx11" ,libx11)))
4514 (native-inputs
4515 `(("pkg-config" ,pkg-config)))
4516 (home-page "https://www.x.org/wiki/")
4517 (synopsis "Xorg Common extensions library")
4518 (description
4519 "Library for common extensions to the X11 protocol.")
4520 (license license:x11)))
4521
4522
4523 (define-public libxinerama
4524 (package
4525 (name "libxinerama")
4526 (version "1.1.3")
4527 (source
4528 (origin
4529 (method url-fetch)
4530 (uri (string-append
4531 "mirror://xorg/individual/lib/libXinerama-"
4532 version
4533 ".tar.bz2"))
4534 (sha256
4535 (base32
4536 "1qlqfvzw45gdzk9xirgwlp2qgj0hbsyiqj8yh8zml2bk2ygnjibs"))))
4537 (build-system gnu-build-system)
4538 (propagated-inputs
4539 `(("xineramaproto" ,xineramaproto)))
4540 (inputs
4541 `(("libxext" ,libxext)
4542 ("libx11" ,libx11)))
4543 (native-inputs
4544 `(("pkg-config" ,pkg-config)))
4545 (home-page "https://www.x.org/wiki/")
4546 (synopsis "Xorg Xinerama protocol library")
4547 (description "API for Xinerama extension to X11 protocol.")
4548 (license license:x11)))
4549
4550
4551 (define-public libxp
4552 (package
4553 (name "libxp")
4554 (version "1.0.3")
4555 (source
4556 (origin
4557 (method url-fetch)
4558 (uri (string-append
4559 "mirror://xorg/individual/lib/libXp-"
4560 version
4561 ".tar.bz2"))
4562 (sha256
4563 (base32
4564 "0mwc2jwmq03b1m9ihax5c6gw2ln8rc70zz4fsj3kb7440nchqdkz"))))
4565 (build-system gnu-build-system)
4566 (propagated-inputs
4567 `(("printproto" ,printproto)))
4568 (inputs
4569 `(("libx11" ,libx11)
4570 ("libxext" ,libxext)))
4571 (native-inputs
4572 `(("pkg-config" ,pkg-config)))
4573 (home-page "https://www.x.org/wiki/")
4574 (synopsis "Xorg Print Client library")
4575 (description "Xorg Print Client library.")
4576 (license license:x11)))
4577
4578
4579 (define-public libxrender
4580 (package
4581 (name "libxrender")
4582 (version "0.9.10")
4583 (source
4584 (origin
4585 (method url-fetch)
4586 (uri (string-append
4587 "mirror://xorg/individual/lib/libXrender-"
4588 version
4589 ".tar.bz2"))
4590 (sha256
4591 (base32
4592 "0j89cnb06g8x79wmmnwzykgkkfdhin9j7hjpvsxwlr3fz1wmjvf0"))))
4593 (build-system gnu-build-system)
4594 (propagated-inputs
4595 `(("renderproto" ,renderproto)))
4596 (inputs
4597 `(("xproto" ,xproto)
4598 ("libx11" ,libx11)))
4599 (native-inputs
4600 `(("pkg-config" ,pkg-config)))
4601 (home-page "https://www.x.org/wiki/")
4602 (synopsis "Xorg Render Extension library")
4603 (description "Library for the Render Extension to the X11 protocol.")
4604 (license license:x11)))
4605
4606 (define-public libxtst
4607 (package
4608 (name "libxtst")
4609 (version "1.2.3")
4610 (source
4611 (origin
4612 (method url-fetch)
4613 (uri (string-append
4614 "mirror://xorg/individual/lib/libXtst-"
4615 version
4616 ".tar.bz2"))
4617 (sha256
4618 (base32
4619 "012jpyj7xfm653a9jcfqbzxyywdmwb2b5wr1dwylx14f3f54jma6"))))
4620 (build-system gnu-build-system)
4621 (propagated-inputs
4622 `(("recordproto" ,recordproto)
4623 ("libxi" ,libxi)))
4624 (inputs
4625 `(("libx11" ,libx11)
4626 ("inputproto" ,inputproto)))
4627 (native-inputs
4628 `(("pkg-config" ,pkg-config)))
4629 (home-page "https://www.x.org/wiki/")
4630 (synopsis "Xorg library for Xtest and Record extensions")
4631 (description
4632 "libXtst provides the Xlib-based client API for the XTEST & RECORD
4633 extensions.
4634
4635 The XTEST extension is a minimal set of client and server extensions
4636 required to completely test the X11 server with no user intervention. This
4637 extension is not intended to support general journaling and playback of user
4638 actions.
4639
4640 The RECORD extension supports the recording and reporting of all core X
4641 protocol and arbitrary X extension protocol.")
4642 (license license:x11)))
4643
4644 (define-public libxv
4645 (package
4646 (name "libxv")
4647 (version "1.0.11")
4648 (source
4649 (origin
4650 (method url-fetch)
4651 (uri (string-append
4652 "mirror://xorg/individual/lib/libXv-"
4653 version
4654 ".tar.bz2"))
4655 (sha256
4656 (base32
4657 "125hn06bd3d8y97hm2pbf5j55gg4r2hpd3ifad651i4sr7m16v6j"))))
4658 (build-system gnu-build-system)
4659 (propagated-inputs
4660 `(("videoproto" ,videoproto)))
4661 (inputs
4662 `(("xproto" ,xproto)
4663 ("libxext" ,libxext)
4664 ("libx11" ,libx11)))
4665 (native-inputs
4666 `(("pkg-config" ,pkg-config)))
4667 (home-page "https://www.x.org/wiki/")
4668 (synopsis "Xorg XVideo Extension library")
4669 (description "Library for the X Video Extension to the X11 protocol.")
4670 (license license:x11)))
4671
4672 (define-public mkfontdir
4673 (package
4674 (name "mkfontdir")
4675 (version "1.0.7")
4676 (source
4677 (origin
4678 (method url-fetch)
4679 (uri (string-append
4680 "mirror://xorg/individual/app/mkfontdir-"
4681 version
4682 ".tar.bz2"))
4683 (sha256
4684 (base32
4685 "0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
4686 (build-system gnu-build-system)
4687 (arguments
4688 '(#:phases
4689 (modify-phases %standard-phases
4690 (add-after 'install 'wrap-mkfontdir
4691 (lambda* (#:key inputs outputs #:allow-other-keys)
4692 (wrap-program (string-append (assoc-ref outputs "out")
4693 "/bin/mkfontdir")
4694 `("PATH" ":" prefix
4695 (,(string-append (assoc-ref inputs "mkfontscale")
4696 "/bin")))))))))
4697 (inputs
4698 `(("mkfontscale" ,mkfontscale)))
4699 (native-inputs
4700 `(("pkg-config" ,pkg-config)))
4701 (home-page "https://www.x.org/wiki/")
4702 (synopsis "Create an index of X font files in a directory")
4703 (description
4704 "MkFontDir creates the 'fonts.dir' files needed by the legacy X
4705 server core font system. The current implementation is a simple wrapper
4706 script around the mkfontscale program.")
4707 (license license:x11)))
4708
4709
4710 (define-public xproto
4711 (package
4712 (name "xproto")
4713 (version "7.0.31")
4714 (source
4715 (origin
4716 (method url-fetch)
4717 (uri (string-append
4718 "mirror://xorg/individual/proto/xproto-"
4719 version
4720 ".tar.bz2"))
4721 (sha256
4722 (base32
4723 "0ivpxz0rx2a7nahkpkhfgymz7j0pwzaqvyqpdgw9afmxl1yp9yf6"))))
4724 (build-system gnu-build-system)
4725 (propagated-inputs
4726 `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
4727 (native-inputs
4728 `(("pkg-config" ,pkg-config)))
4729 (home-page "https://www.x.org/wiki/")
4730 (synopsis "Xorg X11Proto protocol headers")
4731 (description
4732 "XProto provides the headers and specification documents defining
4733 the X Window System Core Protocol, Version 11.
4734
4735 It also includes a number of headers that aren't purely protocol related,
4736 but are depended upon by many other X Window System packages to provide
4737 common definitions and porting layer.")
4738 (license license:x11)))
4739
4740
4741
4742 ;; packages of height 2 in the propagated-inputs tree
4743
4744 (define-public libice
4745 (package
4746 (name "libice")
4747 (version "1.0.9")
4748 (source
4749 (origin
4750 (method url-fetch)
4751 (uri (string-append
4752 "mirror://xorg/individual/lib/libICE-"
4753 version
4754 ".tar.bz2"))
4755 (sha256
4756 (base32
4757 "00p2b6bsg6kcdbb39bv46339qcywxfl4hsrz8asm4hy6q7r34w4g"))))
4758 (build-system gnu-build-system)
4759 (propagated-inputs
4760 `(("xproto" ,xproto)))
4761 (inputs
4762 `(("libbsd" ,libbsd)
4763 ("xtrans" ,xtrans)))
4764 (native-inputs
4765 `(("pkg-config" ,pkg-config)))
4766 (home-page "https://www.x.org/wiki/")
4767 (synopsis "Xorg Inter-Client Exchange library")
4768 (description "Xorg Inter-Client Exchange library.")
4769 (license license:x11)))
4770
4771
4772 (define-public libxau
4773 (package
4774 (name "libxau")
4775 (version "1.0.8")
4776 (source
4777 (origin
4778 (method url-fetch)
4779 (uri (string-append
4780 "mirror://xorg/individual/lib/libXau-"
4781 version
4782 ".tar.bz2"))
4783 (sha256
4784 (base32
4785 "1wm4pv12f36cwzhldpp7vy3lhm3xdcnp4f184xkxsp7b18r7gm7x"))))
4786 (build-system gnu-build-system)
4787 (propagated-inputs
4788 `(("xproto" ,xproto)))
4789 (native-inputs
4790 `(("pkg-config" ,pkg-config)))
4791 (home-page "https://www.x.org/wiki/")
4792 (synopsis "Xorg Authorization library")
4793 (description
4794 "libXau provides an authorization library for individual access to
4795 an X Window System display.")
4796 (license license:x11)))
4797
4798 (define-public libxfixes
4799 (package
4800 (name "libxfixes")
4801 (version "5.0.3")
4802 (source
4803 (origin
4804 (method url-fetch)
4805 (uri (string-append
4806 "mirror://xorg/individual/lib/libXfixes-"
4807 version
4808 ".tar.bz2"))
4809 (sha256
4810 (base32
4811 "1miana3y4hwdqdparsccmygqr3ic3hs5jrqfzp70hvi2zwxd676y"))))
4812 (build-system gnu-build-system)
4813 (propagated-inputs
4814 `(("fixesproto" ,fixesproto)))
4815 (inputs
4816 `(("xproto" ,xproto)
4817 ("libx11" ,libx11)))
4818 (native-inputs
4819 `(("pkg-config" ,pkg-config)))
4820 (home-page "https://www.x.org/wiki/")
4821 (synopsis "Xorg Fixes Extension library")
4822 (description "Library for the XFixes Extension to the X11 protocol.")
4823 (license license:x11)))
4824
4825 (define-public libxfont
4826 (package
4827 (name "libxfont")
4828 (version "1.5.2")
4829 (source
4830 (origin
4831 (method url-fetch)
4832 (uri (string-append
4833 "mirror://xorg/individual/lib/libXfont-"
4834 version
4835 ".tar.bz2"))
4836 (sha256
4837 (base32
4838 "0w8d07bkmjiarkx09579bl8zsq903mn8javc7qpi0ix4ink5x502"))))
4839 (build-system gnu-build-system)
4840 (propagated-inputs
4841 `(("fontsproto" ,fontsproto)
4842 ("freetype" ,freetype)
4843 ("libfontenc" ,libfontenc)
4844 ("xproto" ,xproto)))
4845 (inputs
4846 `(("zlib" ,zlib)
4847 ("xtrans" ,xtrans)))
4848 (native-inputs
4849 `(("pkg-config" ,pkg-config)))
4850 (home-page "https://www.x.org/wiki/")
4851 (synopsis "Xorg Font handling library")
4852 (description
4853 "libXfont provides the core of the legacy X11 font system, handling the
4854 index files (fonts.dir, fonts.alias, fonts.scale), the various font file
4855 formats, and rasterizing them. It is used by the X servers, the X Font
4856 Server (xfs), and some font utilities (bdftopcf for instance), but should
4857 not be used by normal X11 clients. X11 clients access fonts via either the
4858 new API's in libXft, or the legacy API's in libX11.")
4859 (license license:x11)))
4860
4861 (define-public libxfont2
4862 (package
4863 (inherit libxfont)
4864 (version "2.0.1")
4865 (source (origin
4866 (method url-fetch)
4867 (uri (string-append "mirror://xorg/individual/lib/libXfont2-"
4868 version ".tar.bz2"))
4869 (sha256
4870 (base32
4871 "0znvwk36nhmyqpmhbm9mzisgixp1mp5qkfald8x1n5yxbm3vpyz9"))))))
4872
4873 (define-public libxi
4874 (package
4875 (name "libxi")
4876 (version "1.7.9")
4877 (source
4878 (origin
4879 (method url-fetch)
4880 (uri (string-append
4881 "mirror://xorg/individual/lib/libXi-"
4882 version
4883 ".tar.bz2"))
4884 (sha256
4885 (base32
4886 "0idg1wc01hndvaa820fvfs7phvd1ymf0lldmq6386i7rhkzvirn2"))))
4887 (build-system gnu-build-system)
4888 (propagated-inputs
4889 `(("inputproto" ,inputproto)
4890 ("libx11" ,libx11)
4891 ("libxext" ,libxext)
4892 ("libxfixes" ,libxfixes)))
4893 (inputs
4894 `(("xproto" ,xproto)))
4895 (native-inputs
4896 `(("pkg-config" ,pkg-config)))
4897 (home-page "https://www.x.org/wiki/")
4898 (synopsis "Xorg Input Extension library")
4899 (description "Library for the XInput Extension to the X11 protocol.")
4900 (license license:x11)))
4901
4902 (define-public libxrandr
4903 (package
4904 (name "libxrandr")
4905 (version "1.5.1")
4906 (source
4907 (origin
4908 (method url-fetch)
4909 (uri (string-append
4910 "mirror://xorg/individual/lib/libXrandr-"
4911 version
4912 ".tar.bz2"))
4913 (sha256
4914 (base32
4915 "06pmphx8lp3iywqnh88fvbfb0d8xgkx0qpvan49akpja1vxfgy8z"))))
4916 (build-system gnu-build-system)
4917 (propagated-inputs
4918 ;; In accordance with xrandr.pc.
4919 `(("libx11" ,libx11)
4920 ("libxext" ,libxext)
4921 ("libxrender" ,libxrender)
4922 ("randrproto" ,randrproto)
4923 ("xproto" ,xproto)))
4924 (native-inputs
4925 `(("pkg-config" ,pkg-config)))
4926 (home-page "https://www.x.org/wiki/")
4927 (synopsis "Xorg Resize and Rotate Extension library")
4928 (description
4929 "Library for the Resize and Rotate Extension to the X11 protocol.")
4930 (license license:x11)))
4931
4932 (define-public libxvmc
4933 (package
4934 (name "libxvmc")
4935 (version "1.0.10")
4936 (source
4937 (origin
4938 (method url-fetch)
4939 (uri (string-append
4940 "mirror://xorg/individual/lib/libXvMC-"
4941 version
4942 ".tar.bz2"))
4943 (sha256
4944 (base32
4945 "0bpffxr5dal90a8miv2w0rif61byqxq2f5angj4z1bnznmws00g5"))))
4946 (build-system gnu-build-system)
4947 (propagated-inputs
4948 `(("libxv" ,libxv)))
4949 (inputs
4950 `(("xproto" ,xproto)
4951 ("libxext" ,libxext)
4952 ("libx11" ,libx11)))
4953 (native-inputs
4954 `(("pkg-config" ,pkg-config)))
4955 (home-page "https://www.x.org/wiki/")
4956 (synopsis "Xorg XvMC library")
4957 (description "Xorg XvMC library.")
4958 (license license:x11)))
4959
4960 (define-public libxxf86vm
4961 (package
4962 (name "libxxf86vm")
4963 (version "1.1.4")
4964 (source
4965 (origin
4966 (method url-fetch)
4967 (uri (string-append
4968 "mirror://xorg/individual/lib/libXxf86vm-"
4969 version
4970 ".tar.bz2"))
4971 (sha256
4972 (base32
4973 "0mydhlyn72i7brjwypsqrpkls3nm6vxw0li8b2nw0caz7kwjgvmg"))))
4974 (build-system gnu-build-system)
4975 (propagated-inputs
4976 `(("libxext" ,libxext)
4977 ("xf86vidmodeproto" ,xf86vidmodeproto)))
4978 (inputs
4979 `(("libx11" ,libx11)))
4980 (native-inputs
4981 `(("pkg-config" ,pkg-config)))
4982 (home-page "https://www.x.org/wiki/")
4983 (synopsis "Xorg XF86 Video Mode Extension library")
4984 (description
4985 "Library for the XFree86 Video Mode Extension Extension to the X11
4986 protocol.")
4987 (license license:x11)))
4988
4989
4990 ;; packages of height 3 in the propagated-inputs tree
4991
4992 (define-public libxcb
4993 (package
4994 (name "libxcb")
4995 (version "1.12")
4996 (source
4997 (origin
4998 (method url-fetch)
4999 (uri (string-append "https://xcb.freedesktop.org/dist/"
5000 name "-" version ".tar.bz2"))
5001 (sha256
5002 (base32
5003 "0nvv0la91cf8p5qqlb3r5xnmg1jn2wphn4fb5jfbr6byqsvv3psa"))
5004 (patches
5005 (search-patches "libxcb-python-3.5-compat.patch"))))
5006 (build-system gnu-build-system)
5007 (propagated-inputs
5008 `(("libpthread-stubs" ,libpthread-stubs)
5009 ("libxau" ,libxau)
5010 ("libxdmcp" ,libxdmcp)))
5011 (inputs
5012 `(("xcb-proto" ,xcb-proto)
5013 ("libxslt" ,libxslt)))
5014 (native-inputs
5015 `(("pkg-config" ,pkg-config)
5016 ("python" ,python-minimal-wrapper)))
5017 (arguments
5018 `(#:configure-flags '("--enable-xkb")))
5019 (home-page "https://xcb.freedesktop.org/")
5020 (synopsis "The X C Binding (XCB) library")
5021 (description
5022 "libxcb provides an interface to the X Window System protocol,
5023 which replaces the current Xlib interface. It has several advantages
5024 over Xlib, including:
5025
5026 - size: small, simple library, and lower memory footprint;
5027
5028 - latency hiding: batch several requests and wait for the replies later;
5029
5030 - direct protocol access: interface and protocol correspond exactly;
5031
5032 - proven thread support: transparently access XCB from multiple threads;
5033
5034 - easy extension implementation: interfaces auto-generated from XML-XCB.")
5035 (license license:x11)))
5036
5037
5038 (define-public xorg-server
5039 (package
5040 (name "xorg-server")
5041 (version "1.19.3")
5042 (source
5043 (origin
5044 (method url-fetch)
5045 (uri (string-append
5046 "mirror://xorg/individual/xserver/"
5047 name "-" version ".tar.bz2"))
5048 (sha256
5049 (base32
5050 "162s1v901djr57gxmmk4airk8hiwcz79dqyz72972x1lw1k82yk7"))
5051 (patches
5052 (search-patches "xorg-server-CVE-2017-10971.patch"
5053 "xorg-server-CVE-2017-10972.patch"))))
5054 (build-system gnu-build-system)
5055 (propagated-inputs
5056 `(("dri2proto" ,dri2proto)
5057 ("dri3proto" ,dri3proto)
5058 ("fontsproto" ,fontsproto)
5059 ("inputproto" ,inputproto)
5060 ("kbproto" ,kbproto)
5061 ("libpciaccess" ,libpciaccess)
5062 ("mesa" ,mesa)
5063 ("pixman" ,pixman)
5064 ("presentproto" ,presentproto)
5065 ("randrproto" ,randrproto)
5066 ("renderproto" ,renderproto)
5067 ("resourceproto" ,resourceproto)
5068 ("scrnsaverproto" ,scrnsaverproto)
5069 ("videoproto" ,videoproto)
5070 ("xextproto" ,xextproto)
5071 ("xineramaproto" ,xineramaproto)
5072 ("xf86driproto" ,xf86driproto)
5073 ("xproto" ,xproto)))
5074 (inputs
5075 `(("bigreqsproto" ,bigreqsproto)
5076 ("compositeproto" ,compositeproto)
5077 ("damageproto" ,damageproto)
5078 ("udev" ,eudev)
5079 ("dbus" ,dbus)
5080 ("dmxproto" ,dmxproto)
5081 ("libdmx" ,libdmx)
5082 ("libepoxy" ,libepoxy)
5083 ("libgcrypt" ,libgcrypt)
5084 ("libxau" ,libxau)
5085 ("libxaw" ,libxaw)
5086 ("libxdmcp" ,libxdmcp)
5087 ("libxfixes" ,libxfixes)
5088 ("libxfont2" ,libxfont2)
5089 ("libxkbfile" ,libxkbfile)
5090 ("libxrender" ,libxrender)
5091 ("libxres" ,libxres)
5092 ("libxshmfence" ,libxshmfence)
5093 ("libxt" ,libxt)
5094 ("libxv" ,libxv)
5095 ("recordproto" ,recordproto)
5096 ("xcmiscproto" ,xcmiscproto)
5097 ("xf86bigfontproto" ,xf86bigfontproto)
5098 ("xf86dgaproto" ,xf86dgaproto)
5099 ("xf86vidmodeproto" ,xf86vidmodeproto)
5100 ("xkbcomp" ,xkbcomp)
5101 ("xkeyboard-config" ,xkeyboard-config)
5102 ("xtrans" ,xtrans)
5103 ("zlib" ,zlib)
5104 ;; Inputs for Xephyr
5105 ("xcb-util" ,xcb-util)
5106 ("xcb-util-image" ,xcb-util-image)
5107 ("xcb-util-keysyms" ,xcb-util-keysyms)
5108 ("xcb-util-renderutil" ,xcb-util-renderutil)
5109 ("xcb-util-wm" ,xcb-util-wm)))
5110 (native-inputs
5111 `(("python" ,python-minimal-wrapper)
5112 ("pkg-config" ,pkg-config)))
5113 (arguments
5114 `(#:parallel-tests? #f
5115 #:configure-flags
5116 (list (string-append "--with-xkb-path="
5117 (assoc-ref %build-inputs "xkeyboard-config")
5118 "/share/X11/xkb")
5119 (string-append "--with-xkb-output="
5120 "/tmp") ; FIXME: This is a bit doubtful; where should
5121 ; the compiled keyboard maps go?
5122 (string-append "--with-xkb-bin-directory="
5123 (assoc-ref %build-inputs "xkbcomp")
5124 "/bin")
5125 ;; By default, it ends up with invalid '${prefix}/...', causes:
5126 ;; _FontTransOpen: Unable to Parse address ${prefix}/share/...
5127 ;; It's not used anyway, so set it to empty.
5128 "--with-default-font-path="
5129
5130
5131 ;; For the log file, etc.
5132 "--localstatedir=/var"
5133 ;; For sddm
5134 "--enable-kdrive"
5135 "--enable-xephyr")
5136
5137 #:phases
5138 (modify-phases %standard-phases
5139 (add-before
5140 'configure 'pre-configure
5141 (lambda _
5142 (substitute* (find-files "." "\\.c$")
5143 (("/bin/sh") (which "sh")))
5144
5145 ;; Don't try to 'mkdir /var'.
5146 (substitute* "hw/xfree86/Makefile.in"
5147 (("\\$\\(MKDIR_P\\).*logdir.*")
5148 "true\n"))
5149 #t)))))
5150 (home-page "https://www.x.org/wiki/")
5151 (synopsis "Xorg implementation of the X Window System")
5152 (description
5153 "This package provides the Xorg X server itself.
5154 The X server accepts requests from client programs to create windows, which
5155 are (normally rectangular) 'virtual screens' that the client program can
5156 draw into.
5157
5158 Windows are then composed on the actual screen by the X server (or by a
5159 separate composite manager) as directed by the window manager, which usually
5160 communicates with the user via graphical controls such as buttons and
5161 draggable titlebars and borders.")
5162 (license license:x11)))
5163
5164 ;; This package is intended to be used when building GTK+.
5165 ;; Note: It's currently marked as "hidden" to avoid having two non-eq?
5166 ;; packages with the same name and version.
5167 (define-public xorg-server-1.19.3
5168 (hidden-package
5169 (package
5170 (inherit xorg-server)
5171 (name "xorg-server")
5172 (version "1.19.3")
5173 (source
5174 (origin
5175 (method url-fetch)
5176 (uri (string-append
5177 "mirror://xorg/individual/xserver/"
5178 name "-" version ".tar.bz2"))
5179 (sha256
5180 (base32
5181 "162s1v901djr57gxmmk4airk8hiwcz79dqyz72972x1lw1k82yk7")))))))
5182
5183 (define-public xorg-server-xwayland
5184 (package
5185 (inherit xorg-server)
5186 (name "xorg-server-xwayland")
5187 (inputs
5188 `(("wayland" ,wayland)
5189 ("wayland-protocols" ,wayland-protocols)
5190 ,@(package-inputs xorg-server)))
5191 (arguments
5192 (substitute-keyword-arguments (package-arguments xorg-server)
5193 ((#:configure-flags flags)
5194 `(cons* "--enable-xwayland" "--disable-xorg"
5195 "--disable-docs" "--disable-devel-docs"
5196 "--disable-xvfb" "--disable-xnest"
5197 "--disable-xquartz" "--disable-xwin"
5198 ,flags))))
5199 (synopsis "Xorg server with wayland backend")))
5200
5201
5202 ;; packages of height 4 in the propagated-inputs tree
5203
5204 (define-public libx11
5205 (package
5206 (name "libx11")
5207 (version "1.6.5")
5208 (source
5209 (origin
5210 (method url-fetch)
5211 (uri (string-append
5212 "mirror://xorg/individual/lib/libX11-"
5213 version
5214 ".tar.bz2"))
5215 (sha256
5216 (base32
5217 "0pa3cfp6h9rl2vxmkph65250gfqyki0ccqyaan6bl9d25gdr0f2d"))))
5218 (build-system gnu-build-system)
5219 (outputs '("out"
5220 "doc")) ;8 MiB of man pages + XML
5221 (arguments
5222 '(#:configure-flags (list (string-append "--mandir="
5223 (assoc-ref %outputs "doc")
5224 "/share/man"))))
5225 (propagated-inputs
5226 `(("kbproto" ,kbproto)
5227 ("libxcb" ,libxcb)))
5228 (inputs
5229 `(("inputproto" ,inputproto)
5230 ("xextproto" ,xextproto)
5231 ("xtrans" ,xtrans)))
5232 (native-inputs
5233 `(("pkg-config" ,pkg-config)))
5234 (home-page "https://www.x.org/wiki/")
5235 (synopsis "Xorg Core X11 protocol client library")
5236 (description "Xorg Core X11 protocol client library.")
5237 (license license:x11)))
5238
5239 ;; packages of height 5 in the propagated-inputs tree
5240
5241 (define-public libxcursor
5242 (package
5243 (name "libxcursor")
5244 (version "1.1.14")
5245 (source
5246 (origin
5247 (method url-fetch)
5248 (uri (string-append
5249 "mirror://xorg/individual/lib/libXcursor-"
5250 version
5251 ".tar.bz2"))
5252 (sha256
5253 (base32
5254 "1prkdicl5y5yx32h1azh6gjfbijvjp415javv8dsakd13jrarilv"))))
5255 (build-system gnu-build-system)
5256 (propagated-inputs
5257 `(("libx11" ,libx11)
5258 ("libxrender" ,libxrender)
5259 ("libxfixes" ,libxfixes)
5260 ("xproto" ,xproto)))
5261 (native-inputs
5262 `(("pkg-config" ,pkg-config)))
5263 (home-page "https://www.x.org/wiki/")
5264 (synopsis "Xorg Cursor management library")
5265 (description "Xorg Cursor management library.")
5266 (license license:x11)))
5267
5268
5269 (define-public libxt
5270 (package
5271 (name "libxt")
5272 (version "1.1.5")
5273 (source
5274 (origin
5275 (method url-fetch)
5276 (uri (string-append
5277 "mirror://xorg/individual/lib/libXt-"
5278 version
5279 ".tar.bz2"))
5280 (sha256
5281 (base32
5282 "06lz6i7rbrp19kgikpaz4c97fw7n31k2h2aiikczs482g2zbdvj6"))
5283 (patches (search-patches "libxt-guix-search-paths.patch"))))
5284 (build-system gnu-build-system)
5285 (outputs '("out"
5286 "doc")) ;2 MiB of man pages + XML
5287 (arguments
5288 '(#:configure-flags (list (string-append "--mandir="
5289 (assoc-ref %outputs "doc")
5290 "/share/man"))))
5291 (propagated-inputs
5292 `(("libx11" ,libx11)
5293 ("libice" ,libice)
5294 ("libsm" ,libsm)))
5295 (inputs
5296 `(("libx11" ,libx11)))
5297 (native-inputs
5298 `(("pkg-config" ,pkg-config)))
5299 (home-page "https://www.x.org/wiki/")
5300 (synopsis "Xorg XToolkit Intrinsics library")
5301 (description "Xorg XToolkit Intrinsics library.")
5302 (license license:x11)))
5303
5304
5305 (define-public libxaw
5306 (package
5307 (name "libxaw")
5308 (version "1.0.13")
5309 (source
5310 (origin
5311 (method url-fetch)
5312 (uri (string-append
5313 "mirror://xorg/individual/lib/libXaw-"
5314 version
5315 ".tar.bz2"))
5316 (sha256
5317 (base32
5318 "1kdhxplwrn43d9jp3v54llp05kwx210lrsdvqb6944jp29rhdy4f"))))
5319 (build-system gnu-build-system)
5320 (propagated-inputs
5321 `(("libxext" ,libxext)
5322 ("libxmu" ,libxmu)
5323 ("libxpm" ,libxpm)
5324 ("libxt" ,libxt)))
5325 (inputs
5326 `(("xproto" ,xproto)))
5327 (native-inputs
5328 `(("pkg-config" ,pkg-config)))
5329 (home-page "https://www.x.org/wiki/")
5330 (synopsis "Xorg Xaw library")
5331 (description
5332 "Xaw is the X Athena Widget Set based on the X Toolkit
5333 Intrinsics (Xt) Library.")
5334 (license license:x11)))
5335
5336 (define-public twm
5337 (package
5338 (name "twm")
5339 (version "1.0.9")
5340 (source
5341 (origin
5342 (method url-fetch)
5343 (uri (string-append
5344 "mirror://xorg/individual/app/" name "-"
5345 version
5346 ".tar.gz"))
5347 (sha256
5348 (base32
5349 "1s1r00x8add3f27xjqxg6q7mwplwrb72gakbh4y6j052as25wchw"))))
5350 (build-system gnu-build-system)
5351 (inputs
5352 `(("libxt" ,libxt)
5353 ("libxmu" ,libxmu)
5354 ("libxext" ,libxext)
5355 ("xproto" ,xproto)))
5356 (native-inputs
5357 `(("bison" ,bison)
5358 ("pkg-config" ,pkg-config)))
5359 (home-page "https://www.x.org/wiki/")
5360 (synopsis "Tab Window Manager for the X Window System")
5361 (description "Twm is a window manager for the X Window System.
5362 It provides titlebars, shaped windows, several forms of icon management,
5363 user-defined macro functions, click-to-type and pointer-driven
5364 keyboard focus, and user-specified key and pointer button bindings.")
5365 (license license:x11)))
5366
5367 (define-public xcb-util
5368 (package
5369 (name "xcb-util")
5370 (version "0.4.0")
5371 (source (origin
5372 (method url-fetch)
5373 (uri (string-append "mirror://xorg/individual/xcb/"
5374 name "-" version ".tar.bz2"))
5375 (sha256
5376 (base32
5377 "1sahmrgbpyki4bb72hxym0zvxwnycmswsxiisgqlln9vrdlr9r26"))))
5378 (build-system gnu-build-system)
5379 (propagated-inputs
5380 `(("libxcb" ,libxcb)))
5381 (native-inputs
5382 `(("pkg-config" ,pkg-config)))
5383 (home-page "https://cgit.freedesktop.org/xcb/util/")
5384 (synopsis "Core XCB utility functions")
5385 (description
5386 "The XCB util module provides a number of libraries which sit on
5387 top of libxcb, the core X protocol library, and some of the extension
5388 libraries. These experimental libraries provide convenience functions
5389 and interfaces which make the raw X protocol more usable. Some of the
5390 libraries also provide client-side code which is not strictly part of
5391 the X protocol but which has traditionally been provided by Xlib.
5392
5393 The XCB util module provides the following libraries:
5394
5395 - aux: Convenient access to connection setup and some core requests.
5396
5397 - atom: Standard core X atom constants and atom caching.
5398
5399 - event: Some utilities that have little to do with events any more.")
5400 (license license:x11)))
5401
5402
5403 (define-public xcb-util-cursor
5404 (package
5405 (name "xcb-util-cursor")
5406 (version "0.1.3")
5407 (source (origin
5408 (method url-fetch)
5409 (uri (string-append "https://xcb.freedesktop.org/dist/"
5410 "xcb-util-cursor-" version ".tar.bz2"))
5411 (sha256
5412 (base32
5413 "0krr4rcw6r42cncinzvzzdqnmxk3nrgpnadyg2h8k9x10q3hm885"))))
5414 (build-system gnu-build-system)
5415 (native-inputs
5416 `(("m4" ,m4)
5417 ("pkg-config" ,pkg-config)))
5418 (inputs
5419 `(("libxcb" ,libxcb)))
5420 (propagated-inputs
5421 `(("xcb-util-renderutil" ,xcb-util-renderutil)
5422 ("xcb-util-image" ,xcb-util-image)))
5423 (home-page "https://cgit.freedesktop.org/xcb/util-cursor/")
5424 (synopsis "Port of libxcursor")
5425 (description "XCB-util-cursor is a port of libxcursor.")
5426 (license
5427 ; expat license with added clause regarding advertising
5428 (license:non-copyleft
5429 "file://COPYING"
5430 "See COPYING in the distribution."))))
5431
5432
5433 (define-public xcb-util-image
5434 (package
5435 (name "xcb-util-image")
5436 (version "0.4.0")
5437 (source (origin
5438 (method url-fetch)
5439 (uri (string-append "mirror://xorg/individual/xcb/"
5440 name "-" version ".tar.bz2"))
5441 (sha256
5442 (base32
5443 "1z1gxacg7q4cw6jrd26gvi5y04npsyavblcdad1xccc8swvnmf9d"))))
5444 (build-system gnu-build-system)
5445 (propagated-inputs
5446 `(("libxcb" ,libxcb)))
5447 (inputs
5448 `(("xcb-util" ,xcb-util)))
5449 (native-inputs
5450 `(("pkg-config" ,pkg-config)))
5451 (home-page "https://cgit.freedesktop.org/xcb/util-image/")
5452 (synopsis "XCB port of Xlib's XImage and XShmImage")
5453 (description
5454 "The XCB util module provides a number of libraries which sit on
5455 top of libxcb, the core X protocol library, and some of the extension
5456 libraries. These experimental libraries provide convenience functions
5457 and interfaces which make the raw X protocol more usable. Some of the
5458 libraries also provide client-side code which is not strictly part of
5459 the X protocol but which has traditionally been provided by Xlib.
5460
5461 The XCB util-image module provides the following library:
5462
5463 - image: Port of Xlib's XImage and XShmImage functions.")
5464 (license license:x11)))
5465
5466
5467 (define-public xcb-util-keysyms
5468 (package
5469 (name "xcb-util-keysyms")
5470 (version "0.4.0")
5471 (source (origin
5472 (method url-fetch)
5473 (uri (string-append "mirror://xorg/individual/xcb/"
5474 name "-" version ".tar.bz2"))
5475 (sha256
5476 (base32
5477 "1nbd45pzc1wm6v5drr5338j4nicbgxa5hcakvsvm5pnyy47lky0f"))))
5478 (build-system gnu-build-system)
5479 (propagated-inputs
5480 `(("libxcb" ,libxcb)))
5481 (native-inputs
5482 `(("pkg-config" ,pkg-config)))
5483 (home-page "https://cgit.freedesktop.org/xcb/util-keysyms/")
5484 (synopsis "Standard X constants and conversion to/from keycodes")
5485 (description
5486 "The XCB util module provides a number of libraries which sit on
5487 top of libxcb, the core X protocol library, and some of the extension
5488 libraries. These experimental libraries provide convenience functions
5489 and interfaces which make the raw X protocol more usable. Some of the
5490 libraries also provide client-side code which is not strictly part of
5491 the X protocol but which has traditionally been provided by Xlib.
5492
5493 The XCB util-keysyms module provides the following library:
5494
5495 - keysyms: Standard X key constants and conversion to/from keycodes.")
5496 (license license:x11)))
5497
5498
5499 (define-public xcb-util-renderutil
5500 (package
5501 (name "xcb-util-renderutil")
5502 (version "0.3.9")
5503 (source (origin
5504 (method url-fetch)
5505 (uri (string-append "mirror://xorg/individual/xcb/"
5506 name "-" version ".tar.bz2"))
5507 (sha256
5508 (base32
5509 "0nza1csdvvxbmk8vgv8vpmq7q8h05xrw3cfx9lwxd1hjzd47xsf6"))))
5510 (build-system gnu-build-system)
5511 (propagated-inputs
5512 `(("libxcb" ,libxcb)))
5513 (native-inputs
5514 `(("pkg-config" ,pkg-config)))
5515 (home-page "https://cgit.freedesktop.org/xcb/util-renderutil/")
5516 (synopsis "Convenience functions for the Render extension")
5517 (description
5518 "The XCB util module provides a number of libraries which sit on
5519 top of libxcb, the core X protocol library, and some of the extension
5520 libraries. These experimental libraries provide convenience functions
5521 and interfaces which make the raw X protocol more usable. Some of the
5522 libraries also provide client-side code which is not strictly part of
5523 the X protocol but which has traditionally been provided by Xlib.
5524
5525 The XCB util-renderutil module provides the following library:
5526
5527 - renderutil: Convenience functions for the Render extension.")
5528 (license license:x11)))
5529
5530
5531 (define-public xcb-util-wm
5532 (package
5533 (name "xcb-util-wm")
5534 (version "0.4.1")
5535 (source (origin
5536 (method url-fetch)
5537 (uri (string-append "mirror://xorg/individual/xcb/"
5538 name "-" version ".tar.bz2"))
5539 (sha256
5540 (base32
5541 "0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8"))))
5542 (build-system gnu-build-system)
5543 (propagated-inputs
5544 `(("libxcb" ,libxcb)))
5545 (native-inputs
5546 `(("m4" ,m4)
5547 ("pkg-config" ,pkg-config)))
5548 (home-page "https://cgit.freedesktop.org/xcb/util-wm/")
5549 (synopsis "Client and window-manager helpers for ICCCM and EWMH")
5550 (description
5551 "The XCB util modules provides a number of libraries which sit on
5552 top of libxcb, the core X protocol library, and some of the extension
5553 libraries. These experimental libraries provide convenience functions
5554 and interfaces which make the raw X protocol more usable. Some of the
5555 libraries also provide client-side code which is not strictly part of
5556 the X protocol but which has traditionally been provided by Xlib.
5557
5558 The XCB util-wm module provides the following libraries:
5559
5560 - ewmh: Both client and window-manager helpers for EWMH.
5561
5562 - icccm: Both client and window-manager helpers for ICCCM.")
5563 (license license:x11)))
5564
5565 (define-public xinit
5566 (package
5567 (name "xinit")
5568 (version "1.3.4")
5569 (source (origin
5570 (method url-fetch)
5571 (uri (string-append "mirror://xorg/individual/app/xinit-"
5572 version ".tar.bz2"))
5573 (sha256
5574 (base32
5575 "1cq2g469mb2cfgr8k57960yrn90bl33vfqri4pdh2zm0jxrqvn3m"))))
5576 (build-system gnu-build-system)
5577 (inputs
5578 `(("xproto" ,xproto)
5579 ("libx11" ,libx11)))
5580 (native-inputs
5581 `(("pkg-config" ,pkg-config)))
5582 (propagated-inputs
5583 `(("xauth" ,xauth)))
5584 (home-page "http://x.org")
5585 (synopsis "Commands to start the X Window server")
5586 (description
5587 "The xinit program is used to start the X Window System server and a
5588 first client program on systems that are not using a display manager such as
5589 xdm. This package also provides the 'startx' command, which provides a
5590 user-friendly mechanism to start the X server.")
5591 (license license:x11)))
5592
5593 ;; package outside the x.org system proper of height 5
5594
5595 (define-public libxaw3d
5596 (package
5597 (name "libxaw3d")
5598 (version "1.6.2")
5599 (source
5600 (origin
5601 (method url-fetch)
5602 (uri (string-append
5603 "mirror://xorg/individual/lib/libXaw3d-"
5604 version
5605 ".tar.bz2"))
5606 (sha256
5607 (base32
5608 "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
5609 (build-system gnu-build-system)
5610 (propagated-inputs
5611 `(("libxext" ,libxext)
5612 ("libxmu" ,libxmu)
5613 ("libxt" ,libxt)))
5614 (inputs
5615 `(("libx11" ,libx11)))
5616 (native-inputs
5617 `(("pkg-config" ,pkg-config)))
5618 (home-page "https://www.x.org/wiki/")
5619 (synopsis "Xorg Xaw3d library")
5620 (description
5621 "Xaw is the X 3D Athena Widget Set based on the X Toolkit
5622 Intrinsics (Xt) Library.")
5623 (license license:x11)))
5624
5625 (define-public xmag
5626 (package
5627 (name "xmag")
5628 (version "1.0.6")
5629 (source
5630 (origin
5631 (method url-fetch)
5632 (uri (string-append
5633 "mirror://xorg/individual/app/" name "-"
5634 version
5635 ".tar.gz"))
5636 (sha256
5637 (base32
5638 "19bsg5ykal458d52v0rvdx49v54vwxwqg8q36fdcsv9p2j8yri87"))))
5639 (build-system gnu-build-system)
5640 (arguments
5641 `(#:configure-flags
5642 (list (string-append "--with-appdefaultdir="
5643 %output ,%app-defaults-dir))))
5644 (inputs
5645 `(("libxaw" ,libxaw)))
5646 (native-inputs
5647 `(("pkg-config" ,pkg-config)))
5648 (home-page "https://www.x.org/wiki/")
5649 (synopsis "Display or capture a magnified part of a X11 screen")
5650 (description "Xmag displays and captures a magnified snapshot of a portion
5651 of an X11 screen.")
5652 (license license:x11)))
5653
5654 (define-public xmessage
5655 (package
5656 (name "xmessage")
5657 (version "1.0.4")
5658 (source
5659 (origin
5660 (method url-fetch)
5661 (uri (string-append
5662 "mirror://xorg/individual/app/" name "-"
5663 version
5664 ".tar.gz"))
5665 (sha256
5666 (base32
5667 "1jmcac1xbwplbxfl75sr6w3zqhx1khpdzlqippjsr31cjp1rjc48"))))
5668 (build-system gnu-build-system)
5669 (arguments
5670 `(#:configure-flags
5671 (list (string-append "--with-appdefaultdir="
5672 %output ,%app-defaults-dir))))
5673 (inputs
5674 `(("libxaw" ,libxaw)))
5675 (native-inputs
5676 `(("pkg-config" ,pkg-config)))
5677 (home-page "https://www.x.org/wiki/")
5678 (synopsis "Displays a message or query in a window")
5679 (description
5680 "Xmessage displays a message or query in a window. The user can click
5681 on a button to dismiss it or can select one of several buttons
5682 to answer a question. Xmessage can also exit after a specified time.")
5683 (license license:x11)))
5684
5685 (define-public xterm
5686 (package
5687 (name "xterm")
5688 (version "322")
5689 (source (origin
5690 (method url-fetch)
5691 (uri (string-append "ftp://ftp.invisible-island.net/xterm/"
5692 "xterm-" version ".tgz"))
5693 (sha256
5694 (base32
5695 "1mh9s5g3fs64iimnl7axk0isb5306dyshisxlv5gr8vn7ysl3nws"))))
5696 (build-system gnu-build-system)
5697 (arguments
5698 '(#:configure-flags '("--enable-wide-chars" "--enable-256-color"
5699 "--enable-load-vt-fonts" "--enable-i18n"
5700 "--enable-doublechars" "--enable-luit"
5701 "--enable-mini-luit")
5702 #:tests? #f))
5703 (native-inputs
5704 `(("pkg-config" ,pkg-config)))
5705 (inputs
5706 `(("luit" ,luit)
5707 ("libXft" ,libxft)
5708 ("fontconfig" ,fontconfig)
5709 ("freetype" ,freetype)
5710 ("ncurses" ,ncurses)
5711 ("libICE" ,libice)
5712 ("libSM" ,libsm)
5713 ("libX11" ,libx11)
5714 ("libXext" ,libxext)
5715 ("libXt" ,libxt)
5716 ("xproto" ,xproto)
5717 ("libXaw" ,libxaw)))
5718 (home-page "http://invisible-island.net/xterm")
5719 (synopsis "Terminal emulator for the X Window System")
5720 (description
5721 "The xterm program is a terminal emulator for the X Window System. It
5722 provides DEC VT102/VT220 (VTxxx) and Tektronix 4014 compatible terminals for
5723 programs that cannot use the window system directly.")
5724 (license license:x11)))
5725
5726 (define-public perl-x11-xcb
5727 (package
5728 (name "perl-x11-xcb")
5729 (version "0.16")
5730 (source (origin
5731 (method url-fetch)
5732 (uri (string-append
5733 "mirror://cpan/authors/id/M/MS/MSTPLBG/"
5734 "X11-XCB-" version ".tar.gz"))
5735 (sha256
5736 (base32
5737 "14mnvr1001py2z1n43l18yaw0plwvjg5pcsyc7k81sa0amw8ahzw"))))
5738 (build-system perl-build-system)
5739 (arguments
5740 '(;; Disable parallel build to prevent a race condition.
5741 #:parallel-build? #f
5742 #:phases
5743 (modify-phases %standard-phases
5744 (add-before 'build 'patch-Makefile
5745 (lambda* (#:key inputs #:allow-other-keys)
5746 (substitute* "Makefile"
5747 ;; XXX: Without this hack, attempts at using XCB.so fails with
5748 ;; an error such as "XCB.so: undefined symbol: xcb_xinerama_id"
5749 (("^LDDLFLAGS = ")
5750 (string-append "LDDLFLAGS = "
5751 "-lxcb -lxcb-util -lxcb-xinerama -lxcb-icccm ")))
5752 #t)))
5753 ;; Tests require a running X11 server.
5754 #:tests? #f))
5755 (native-inputs
5756 `(("perl-extutils-depends" ,perl-extutils-depends)
5757 ("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
5758 ("perl-test-deep" ,perl-test-deep)
5759 ("perl-test-exception" ,perl-test-exception)))
5760 (propagated-inputs
5761 `(("perl-data-dump" ,perl-data-dump)
5762 ("perl-mouse" ,perl-mouse)
5763 ("perl-mousex-nativetraits" ,perl-mousex-nativetraits)
5764 ("perl-try-tiny" ,perl-try-tiny)
5765 ("perl-xml-descent" ,perl-xml-descent)
5766 ("perl-xml-simple" ,perl-xml-simple)
5767 ("perl-xs-object-magic" ,perl-xs-object-magic)))
5768 (inputs
5769 `(("libxcb" ,libxcb)
5770 ("xcb-proto" ,xcb-proto)
5771 ("xcb-util" ,xcb-util)
5772 ("xcb-util-wm" ,xcb-util-wm)))
5773 (home-page "http://search.cpan.org/dist/X11-XCB")
5774 (synopsis "Perl bindings for libxcb")
5775 (description
5776 "These bindings wrap @code{libxcb} (a C library to speak with X11,
5777 in many cases better than @code{Xlib}), and provides an object oriented
5778 interface to its methods (using @code{Mouse}).")
5779 (license license:perl-license)))
5780
5781 (define-public perl-x11-protocol
5782 (package
5783 (name "perl-x11-protocol")
5784 (version "0.56")
5785 (source (origin
5786 (method url-fetch)
5787 (uri (string-append
5788 "mirror://cpan/authors/id/S/SM/SMCCAM/X11-Protocol-"
5789 version ".tar.gz"))
5790 (sha256
5791 (base32
5792 "1dq89bh6fqv7l5mbffqcismcljpq5f869bx7g8lg698zgindv5ny"))))
5793 (build-system perl-build-system)
5794 (arguments '(#:tests? #f)) ;tests require a running x server
5795 (synopsis "Raw interface to X Window System servers")
5796 (description
5797 "X11::Protocol is a client-side interface to the X11 Protocol, allowing
5798 perl programs to display windows and graphics on X11 servers.")
5799 (home-page
5800 (string-append "http://search.cpan.org/~smccam/X11-Protocol-" version))
5801 ;; From the package README: "you can redistribute and/or modify it under
5802 ;; the same terms as Perl itself. (As an exception, the file
5803 ;; Keysyms.pm,which is derived from a file in the standard X11
5804 ;; distribution, has another, less restrictive copying policy, as do some
5805 ;; of the extension modules in the directory Protocol/Ext: see those files
5806 ;; for details)."
5807 (license license:perl-license)))
5808
5809 (define-public xcompmgr
5810 (package
5811 (name "xcompmgr")
5812 (version "1.1.7")
5813 (source
5814 (origin
5815 ;; there's no current tarball
5816 (method git-fetch)
5817 (uri (git-reference
5818 (url "https://anongit.freedesktop.org/git/xorg/app/xcompmgr.git")
5819 (commit (string-append name "-" version))))
5820 (sha256
5821 (base32
5822 "04swkrm3gk689wrjc418bd3n25w8r20kg1xfbn5j8d7mx1r5gf16"))
5823 (file-name (string-append name "-" version))))
5824 (build-system gnu-build-system)
5825 (arguments
5826 `(#:phases (modify-phases %standard-phases
5827 (add-after 'unpack 'autogen
5828 (lambda _
5829 (setenv "NOCONFIGURE" "t")
5830 (zero? (system* "sh" "autogen.sh")))))))
5831 (native-inputs
5832 `(("pkg-config" ,pkg-config)
5833 ("autoconf" ,autoconf)
5834 ("automake" ,automake)))
5835 (inputs
5836 `(("libX11" ,libx11)
5837 ("libXext" ,libxext)
5838 ("libXcomposite" ,libxcomposite)
5839 ("libXfixes" ,libxfixes)
5840 ("libXdamage" ,libxdamage)
5841 ("libXrender" ,libxrender)))
5842 (synopsis "X Compositing manager using RENDER")
5843 (description "xcompmgr is a sample compositing manager for X servers
5844 supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE extensions. It enables
5845 basic eye-candy effects.")
5846 (home-page "https://cgit.freedesktop.org/xorg/app/xcompmgr/")
5847 (license (license:x11-style
5848 "https://cgit.freedesktop.org/xorg/app/xcompmgr/tree/COPYING"))))
5849
5850 (define-public xpra
5851 (package
5852 (name "xpra")
5853 (version "2.0.3")
5854 (source
5855 (origin
5856 (method url-fetch)
5857 (uri (string-append "https://www.xpra.org/src/xpra-"
5858 version ".tar.xz"))
5859 (sha256
5860 (base32
5861 "1f2mkbgjslfivh5xq5xbab1cn6jjyc1d104f692f3s0dnhq7dafa"))))
5862 (build-system python-build-system)
5863 (inputs `(("ffmpeg", ffmpeg)
5864 ("flac", flac)
5865 ("gtk+-2" ,gtk+-2) ;; no full GTK3 support yet
5866 ("libjpeg", libjpeg)
5867 ("libpng", libpng)
5868 ("libvpx", libvpx)
5869 ("libx264", libx264)
5870 ("libxcomposite", libxcomposite)
5871 ("libxdamage", libxdamage)
5872 ("libxkbfile", libxkbfile)
5873 ("libxrandr", libxrandr)
5874 ("libxtst", libxtst)
5875 ("lzo", lzo)
5876 ("python2-cryptography", python2-cryptography)
5877 ("python2-dbus", python2-dbus)
5878 ("python2-lz4", python2-lz4)
5879 ("python2-lzo", python2-lzo)
5880 ("python2-numpy", python2-numpy)
5881 ("python2-pillow" ,python2-pillow)
5882 ("python2-pycairo", python2-pycairo)
5883 ("python2-pycrypto", python2-pycrypto)
5884 ("python2-pygobject", python2-pygobject)
5885 ("python2-pyopengl", python2-pyopengl)
5886 ("python2-pygtk", python2-pygtk)
5887 ("python2-rencode", python2-rencode)
5888 ("xorg-server", xorg-server)))
5889 (native-inputs `(("pkg-config" ,pkg-config)
5890 ("python2-cython", python2-cython)))
5891 (arguments
5892 `(#:python ,python-2 ;; no full Python 3 support yet
5893 #:configure-flags '("--with-tests"
5894 "--with-bundle_tests"
5895 "--without-strict")
5896 #:modules ((guix build python-build-system)
5897 (guix build utils))
5898
5899 #:phases
5900 (modify-phases %standard-phases
5901 (delete 'build)
5902 (delete 'check) ;; There's no test suite at the moment.
5903
5904 ;; Remove BUILD_CPU, BUILD_DATE, BUILD_TIME from build info to
5905 ;; prevent deterministic issues. Also correct some directories and
5906 ;; use the xvfb binary instead of xorg-server (which doesn't seem to
5907 ;; work).
5908 (add-before 'install 'remove-timestamps&set-file-names
5909 (lambda* (#:key inputs outputs #:allow-other-keys)
5910 (substitute* "add_build_info.py"
5911 ((".*\"BUILD_CPU\", get_cpuinfo.*") ""))
5912 (substitute* "add_build_info.py"
5913 ((".*\"BUILD_DATE\", datetime.*") ""))
5914 (substitute* "add_build_info.py"
5915 ((".*\"BUILD_TIME\", datetime.*") ""))
5916 (substitute* "setup.py"
5917 (("/etc/init.d/")
5918 (string-append (assoc-ref outputs "out")
5919 "/etc/init.d/")))
5920 (substitute* "setup.py"
5921 (("/usr/lib/")
5922 (string-append (assoc-ref outputs "out") "/lib/")))
5923 (substitute* "./etc/xpra/conf.d/55_server_x11.conf.in"
5924 (("xvfb = %.*")
5925 (string-append "xvfb = "
5926 (assoc-ref inputs "xorg-server")
5927 "/bin/Xvfb +extension Composite -nolisten tcp"
5928 " -noreset -auth $XAUTHORITY"
5929 " -screen 0 5760x2560x24+32")))
5930 #t)))))
5931 (home-page "https://www.xpra.org/")
5932 (synopsis "Remote access to individual applications or full desktops")
5933 (description "Xpra is a persistent remote display server and client for
5934 forwarding applications and desktop screens. It gives you remote access to
5935 individual applications or full desktops. On X11, it is also known as
5936 ``@command{screen} for X11'': it allows you to run programs, usually on a
5937 remote host, direct their display to your local machine, and then to
5938 disconnect from these programs and reconnect from the same or another machine,
5939 without losing any state. It can also be used to forward full desktops from
5940 X11 servers, Windows, or macOS.")
5941 (license license:gpl2+)))