gnu: dealii: Update to 8.5.0.
[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 "2100efa105e8c9615eda867d39471d78e500b1bb")
2868 (revision "7"))
2869 (package
2870 (name "xf86-video-intel")
2871 (version (string-append "2.99.917-" revision "-"
2872 (string-take commit 7)))
2873 (source
2874 (origin
2875 ;; there's no current tarball
2876 (method git-fetch)
2877 (uri (git-reference
2878 (url "https://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel.git")
2879 (commit commit)))
2880 (sha256
2881 (base32
2882 "15fg844msmixsvlxcd5wm2awmns652sxcxj2wmp6819lr32lc4ir"))
2883 (file-name (string-append name "-" version))))
2884 (build-system gnu-build-system)
2885 (inputs `(("mesa" ,mesa)
2886 ("udev" ,eudev)
2887 ("libx11" ,libx11)
2888 ("libxfont" ,libxfont2)
2889 ("xorg-server" ,xorg-server)))
2890 (native-inputs
2891 `(("pkg-config" ,pkg-config)
2892 ("autoconf" ,autoconf)
2893 ("automake" ,automake)
2894 ("libtool" ,libtool)))
2895 (supported-systems
2896 ;; This driver is only supported on Intel systems.
2897 (filter (lambda (system) (or (string-prefix? "i686-" system)
2898 (string-prefix? "x86_64-" system)))
2899 %supported-systems))
2900 (arguments
2901 '(#:configure-flags '("--with-default-accel=uxa")
2902 #:phases (modify-phases %standard-phases
2903 (add-after 'unpack 'bootstrap
2904 (lambda _
2905 (zero? (system* "autoreconf" "-vfi")))))))
2906 (home-page "https://www.x.org/wiki/")
2907 (synopsis "Intel video driver for X server")
2908 (description
2909 "xf86-video-intel is a 2D graphics driver for the Xorg X server.
2910 It supports a variety of Intel graphics chipsets.")
2911 (license license:x11))))
2912
2913
2914 (define-public xf86-video-mach64
2915 (package
2916 (name "xf86-video-mach64")
2917 (version "6.9.5")
2918 (source
2919 (origin
2920 (method url-fetch)
2921 (uri (string-append
2922 "mirror://xorg/individual/driver/xf86-video-mach64-"
2923 version
2924 ".tar.bz2"))
2925 (sha256
2926 (base32
2927 "07xlf5nsjm0x18ij5gyy4lf8hwpl10i8chi3skpqjh84drdri61y"))
2928 (patches (search-patches "xf86-video-mach64-glibc-2.20.patch"))))
2929 (build-system gnu-build-system)
2930 (inputs `(("mesa" ,mesa)
2931 ("xf86driproto" ,xf86driproto)
2932 ("xorg-server" ,xorg-server)))
2933 (native-inputs
2934 `(("pkg-config" ,pkg-config)))
2935 (home-page "https://www.x.org/wiki/")
2936 (synopsis "Mach64 video driver for X server")
2937 (description
2938 "xf86-video-mach64 is a video driver for the Xorg X server.
2939 This driver is intended for all ATI video adapters based on the Mach64
2940 series or older chipsets, providing maximum video function within
2941 hardware limitations. The driver is also intended to optionally provide
2942 the same level of support for generic VGA or 8514/A adapters.")
2943 (license license:x11)))
2944
2945
2946 (define-public xf86-video-mga
2947 (package
2948 (name "xf86-video-mga")
2949 (version "1.6.5")
2950 (source
2951 (origin
2952 (method url-fetch)
2953 (uri (string-append
2954 "mirror://xorg/individual/driver/xf86-video-mga-"
2955 version
2956 ".tar.bz2"))
2957 (sha256
2958 (base32
2959 "08ll52hlar9z446v0wwca5qkj3hxhswwm7vvcgic9xv4cf7csqxn"))))
2960 (build-system gnu-build-system)
2961 (inputs `(("mesa" ,mesa)
2962 ("xf86driproto" ,xf86driproto)
2963 ("xorg-server" ,xorg-server)))
2964 (native-inputs `(("pkg-config" ,pkg-config)))
2965 (home-page "https://www.x.org/wiki/")
2966 (synopsis "Matrox video driver for X server")
2967 (description
2968 "xf86-video-mga is a Matrox video driver for the Xorg X server.")
2969 (license license:x11)))
2970
2971 (define-public xf86-video-neomagic
2972 (package
2973 (name "xf86-video-neomagic")
2974 (version "1.2.9")
2975 (source
2976 (origin
2977 (method url-fetch)
2978 (uri (string-append
2979 "mirror://xorg/individual/driver/xf86-video-neomagic-"
2980 version
2981 ".tar.bz2"))
2982 (sha256
2983 (base32
2984 "1whb2kgyqaxdjim27ya404acz50izgmafwnb6y9m89q5n6b97y3j"))))
2985 (build-system gnu-build-system)
2986 (inputs `(("xf86dgaproto" ,xf86dgaproto)
2987 ("xorg-server" ,xorg-server)))
2988 (native-inputs `(("pkg-config" ,pkg-config)))
2989 (home-page "https://www.x.org/wiki/")
2990 (synopsis "NeoMagic video driver for X server")
2991 (description
2992 "xf86-video-neomagic is a NeoMagic video driver for the Xorg X server.")
2993 (license license:x11)))
2994
2995
2996 ;; This driver depends on XAA which has been removed from xorg-server.
2997
2998 ;; (define-public xf86-video-newport
2999 ;; (package
3000 ;; (name "xf86-video-newport")
3001 ;; (version "0.2.4")
3002 ;; (source
3003 ;; (origin
3004 ;; (method url-fetch)
3005 ;; (uri (string-append
3006 ;; "mirror://xorg/individual/driver/xf86-video-newport-"
3007 ;; version
3008 ;; ".tar.bz2"))
3009 ;; (sha256
3010 ;; (base32
3011 ;; "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
3012 ;; (build-system gnu-build-system)
3013 ;; (inputs `(("xorg-server" ,xorg-server)))
3014 ;; (native-inputs `(("pkg-config" ,pkg-config)))
3015 ;; (home-page "https://www.x.org/wiki/")
3016 ;; (synopsis "Newport video driver for X server")
3017 ;; (description
3018 ;; "xf86-video-newport is an Xorg X server video driver for the SGI
3019 ;; newport cards.")
3020 ;; (license license:x11)))
3021
3022
3023 (define-public xf86-video-nv
3024 (package
3025 (name "xf86-video-nv")
3026 (version "2.1.21")
3027 (source
3028 (origin
3029 (method url-fetch)
3030 (uri (string-append
3031 "mirror://xorg/individual/driver/xf86-video-nv-"
3032 version
3033 ".tar.bz2"))
3034 (sha256
3035 (base32
3036 "0bdk3pc5y0n7p53q4gc2ff7bw16hy5hwdjjxkm5j3s7hdyg6960z"))))
3037 (build-system gnu-build-system)
3038 (inputs `(("xorg-server" ,xorg-server)))
3039 (native-inputs `(("pkg-config" ,pkg-config)))
3040 (home-page "https://www.x.org/wiki/")
3041 (synopsis "NVIDIA video driver for X server")
3042 (description
3043 "This package contains Xorg support for the NVIDIA GeForce 8 series of
3044 graphics processors.
3045
3046 There are a few caveats of which to be aware: the XVideo extension is not
3047 supported, and the RENDER extension is not accelerated by this driver.")
3048 (license license:x11)))
3049
3050 (define-public xf86-video-nouveau
3051 (package
3052 (name "xf86-video-nouveau")
3053 (version "1.0.15")
3054 (source
3055 (origin
3056 (method url-fetch)
3057 (uri (string-append
3058 "mirror://xorg/individual/driver/xf86-video-nouveau-"
3059 version
3060 ".tar.bz2"))
3061 (sha256
3062 (base32
3063 "0k0xah72ryjwak4dc4crszxrlkmi9x1s7p3sd4la642n77yi1pmf"))))
3064 (build-system gnu-build-system)
3065 (inputs `(("xorg-server" ,xorg-server)))
3066 (native-inputs `(("pkg-config" ,pkg-config)))
3067 (home-page "https://nouveau.freedesktop.org")
3068 (synopsis "NVIDIA video driver for X server")
3069 (description
3070 "This package provides modern, high-quality Xorg drivers for NVIDIA
3071 graphics cards.")
3072 (license license:x11)))
3073
3074 (define-public xf86-video-openchrome
3075 (package
3076 (name "xf86-video-openchrome")
3077 (version "0.6.0")
3078 (source
3079 (origin
3080 (method url-fetch)
3081 (uri (string-append
3082 "mirror://xorg/individual/driver/xf86-video-openchrome-"
3083 version
3084 ".tar.bz2"))
3085 (sha256
3086 (base32
3087 "0x9gq3hw6k661k82ikd1y2kkk4dmgv310xr5q59dwn4k6z37aafs"))))
3088 (build-system gnu-build-system)
3089 (inputs `(("libx11" ,libx11)
3090 ("libxext" ,libxext)
3091 ("libxvmc" ,libxvmc)
3092 ("mesa" ,mesa)
3093 ("xf86driproto" ,xf86driproto)
3094 ("xorg-server" ,xorg-server)))
3095 (native-inputs
3096 `(("pkg-config" ,pkg-config)))
3097 (home-page "https://www.x.org/wiki/")
3098 (synopsis "Openchrome video driver for X server")
3099 (description
3100 "xf86-video-openchrome is a video driver for the Xorg X server.
3101 This driver is intended for VIA chipsets featuring the VIA UniChrome,
3102 UniChrome Pro and Chrome9 integrated graphics processors.")
3103 (license license:x11)))
3104
3105
3106 (define-public xf86-video-qxl
3107 (package
3108 (name "xf86-video-qxl")
3109 (version "0.1.5")
3110 (source (origin
3111 (method url-fetch)
3112 (uri (string-append
3113 "mirror://xorg/individual/driver/"
3114 "xf86-video-qxl-" version ".tar.bz2"))
3115 (sha256
3116 (base32
3117 "14jc24znnahhmz4kqalafmllsg8awlz0y6gpgdpk5ih38ph851mi"))))
3118 (build-system gnu-build-system)
3119 (inputs
3120 `(("fontsproto" ,fontsproto)
3121 ("libxfont" ,libxfont2)
3122 ("spice-protocol" ,spice-protocol)
3123 ("xf86dgaproto" ,xf86dgaproto)
3124 ("xorg-server" ,xorg-server)
3125 ("xproto" ,xproto)))
3126 (native-inputs
3127 `(("pkg-config" ,pkg-config)))
3128 (synopsis "Qxl video driver for X server")
3129 (description "xf86-video-qxl is a video driver for the Xorg X server.
3130 This driver is intended for the spice qxl virtio device.")
3131 (home-page "http://www.spice-space.org")
3132 (license license:x11)))
3133
3134
3135 (define-public xf86-video-r128
3136 (package
3137 (name "xf86-video-r128")
3138 (version "6.10.2")
3139 (source
3140 (origin
3141 (method url-fetch)
3142 (uri (string-append
3143 "mirror://xorg/individual/driver/xf86-video-r128-"
3144 version
3145 ".tar.bz2"))
3146 (sha256
3147 (base32
3148 "1pkpka5m4cd6iy0f8iqnmg6xci14nb6887ilvxzn3xrsgx8j3nl4"))))
3149 (build-system gnu-build-system)
3150 (inputs `(("mesa" ,mesa)
3151 ("xf86driproto" ,xf86driproto)
3152 ("xorg-server" ,xorg-server)))
3153 (native-inputs `(("pkg-config" ,pkg-config)))
3154 (home-page "https://www.x.org/wiki/")
3155 (synopsis "ATI Rage 128 video driver for X server")
3156 (description
3157 "xf86-video-r128 is a video driver for the Xorg X server.
3158 This driver is intended for ATI Rage 128 based cards.")
3159 (license license:x11)))
3160
3161
3162 (define-public xf86-video-savage
3163 (package
3164 (name "xf86-video-savage")
3165 (version "2.3.9")
3166 (source
3167 (origin
3168 (method url-fetch)
3169 (uri (string-append
3170 "mirror://xorg/individual/driver/xf86-video-savage-"
3171 version
3172 ".tar.bz2"))
3173 (sha256
3174 (base32
3175 "11pcrsdpdrwk0mrgv83s5nsx8a9i4lhmivnal3fjbrvi3zdw94rc"))))
3176 (build-system gnu-build-system)
3177 (inputs `(("mesa" ,mesa)
3178 ("xf86driproto" ,xf86driproto)
3179 ("xorg-server" ,xorg-server)))
3180 (native-inputs `(("pkg-config" ,pkg-config)))
3181 (home-page "https://www.x.org/wiki/")
3182 (synopsis "Savage video driver for X server")
3183 (description
3184 "xf86-video-savage is an S3 Savage video driver for the Xorg X server.")
3185 (license license:x11)))
3186
3187
3188 (define-public xf86-video-siliconmotion
3189 (package
3190 (name "xf86-video-siliconmotion")
3191 (version "1.7.9")
3192 (source
3193 (origin
3194 (method url-fetch)
3195 (uri (string-append
3196 "mirror://xorg/individual/driver/xf86-video-siliconmotion-"
3197 version
3198 ".tar.bz2"))
3199 (sha256
3200 (base32
3201 "1g2r6gxqrmjdff95d42msxdw6vmkg2zn5sqv0rxd420iwy8wdwyh"))))
3202 (build-system gnu-build-system)
3203 (inputs `(("xorg-server" ,xorg-server)))
3204 (native-inputs `(("pkg-config" ,pkg-config)))
3205 (home-page "https://www.x.org/wiki/")
3206 (synopsis "Silicon Motion video driver for X server")
3207 (description
3208 "xf86-video-siliconmotion is a Silicon Motion video driver for the
3209 Xorg X server.")
3210 (license license:x11)))
3211
3212
3213 (define-public xf86-video-sis
3214 (package
3215 (name "xf86-video-sis")
3216 (version "0.10.9")
3217 (source
3218 (origin
3219 (method url-fetch)
3220 (uri (string-append
3221 "mirror://xorg/individual/driver/xf86-video-sis-"
3222 version
3223 ".tar.bz2"))
3224 (sha256
3225 (base32
3226 "03f1abjjf68y8y1iz768rn95va9d33wmbwfbsqrgl6k0gi0bf9jj"))))
3227 (build-system gnu-build-system)
3228 (inputs `(("mesa" ,mesa)
3229 ("xf86dgaproto" ,xf86dgaproto)
3230 ("xf86driproto" ,xf86driproto)
3231 ("xorg-server" ,xorg-server)))
3232 (native-inputs
3233 `(("pkg-config" ,pkg-config)))
3234 (home-page "https://www.x.org/wiki/")
3235 (synopsis "Sis video driver for X server")
3236 (description
3237 "xf86-video-SiS is a SiS video driver for the Xorg X server.
3238 This driver supports SiS chipsets of 300/315/330/340 series.")
3239 (license license:bsd-3)))
3240
3241
3242 (define-public xf86-video-suncg6
3243 (package
3244 (name "xf86-video-suncg6")
3245 (version "1.1.2")
3246 (source
3247 (origin
3248 (method url-fetch)
3249 (uri (string-append
3250 "mirror://xorg/individual/driver/xf86-video-suncg6-"
3251 version
3252 ".tar.bz2"))
3253 (sha256
3254 (base32
3255 "04fgwgk02m4nimlv67rrg1wnyahgymrn6rb2cjj1l8bmzkii4glr"))))
3256 (build-system gnu-build-system)
3257 (inputs `(("xorg-server" ,xorg-server)))
3258 (native-inputs `(("pkg-config" ,pkg-config)))
3259 (home-page "https://www.x.org/wiki/")
3260 (synopsis "GX/TurboGX video driver for X server")
3261 (description
3262 "xf86-video-suncg6 is a GX/TurboGX video driver for the Xorg X server.")
3263 (license license:x11)))
3264
3265
3266 (define-public xf86-video-sunffb
3267 (package
3268 (name "xf86-video-sunffb")
3269 (version "1.2.2")
3270 (source
3271 (origin
3272 (method url-fetch)
3273 (uri (string-append
3274 "mirror://xorg/individual/driver/xf86-video-sunffb-"
3275 version
3276 ".tar.bz2"))
3277 (sha256
3278 (base32
3279 "07z3ngifwg2d4jgq8pms47n5lr2yn0ai72g86xxjnb3k20n5ym7s"))))
3280 (build-system gnu-build-system)
3281 (inputs `(("xorg-server" ,xorg-server)))
3282 (native-inputs `(("pkg-config" ,pkg-config)))
3283 (home-page "https://www.x.org/wiki/")
3284 (synopsis "SUNFFB video driver for X server")
3285 (description
3286 "xf86-video-sunffb is a SUNFFB video driver for the Xorg X server.")
3287 (license license:x11)))
3288
3289
3290 (define-public xf86-video-tdfx
3291 (package
3292 (name "xf86-video-tdfx")
3293 (version "1.4.7")
3294 (source
3295 (origin
3296 (method url-fetch)
3297 (uri (string-append
3298 "mirror://xorg/individual/driver/xf86-video-tdfx-"
3299 version
3300 ".tar.bz2"))
3301 (sha256
3302 (base32
3303 "0hia45z4jc472fxp00803nznizcn4h1ybp63jcsb4lmd9vhqxx2c"))))
3304 (build-system gnu-build-system)
3305 (inputs `(("mesa" ,mesa)
3306 ("xf86driproto" ,xf86driproto)
3307 ("xorg-server" ,xorg-server)))
3308 (native-inputs `(("pkg-config" ,pkg-config)))
3309 (home-page "https://www.x.org/wiki/")
3310 (synopsis "3Dfx video driver for X server")
3311 (description
3312 "xf86-video-tdfx is a 3Dfx video driver for the Xorg X server.")
3313 (license license:x11)))
3314
3315
3316 (define-public xf86-video-tga
3317 (package
3318 (name "xf86-video-tga")
3319 (version "1.2.2")
3320 (source
3321 (origin
3322 (method url-fetch)
3323 (uri (string-append
3324 "mirror://xorg/individual/driver/xf86-video-tga-"
3325 version
3326 ".tar.bz2"))
3327 (sha256
3328 (base32
3329 "0cb161lvdgi6qnf1sfz722qn38q7kgakcvj7b45ba3i0020828r0"))
3330 (patches (search-patches "xf86-video-tga-remove-mibstore.patch"))))
3331 (build-system gnu-build-system)
3332 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3333 ("xorg-server" ,xorg-server)))
3334 (native-inputs `(("pkg-config" ,pkg-config)))
3335 (home-page "https://www.x.org/wiki/")
3336 (synopsis "TGA video driver for X server")
3337 (description
3338 "xf86-video-tga is a TGA (DEC 21030) video driver for the Xorg
3339 X server.")
3340 (license license:x11)))
3341
3342
3343 (define-public xf86-video-trident
3344 (package
3345 (name "xf86-video-trident")
3346 (version "1.3.8")
3347 (source
3348 (origin
3349 (method url-fetch)
3350 (uri (string-append
3351 "mirror://xorg/individual/driver/xf86-video-trident-"
3352 version
3353 ".tar.bz2"))
3354 (sha256
3355 (base32
3356 "0gxcar434kx813fxdpb93126lhmkl3ikabaljhcj5qn3fkcijlcy"))))
3357 (build-system gnu-build-system)
3358 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3359 ("xorg-server" ,xorg-server)))
3360 (native-inputs `(("pkg-config" ,pkg-config)))
3361 (home-page "https://www.x.org/wiki/")
3362 (synopsis "Trident video driver for X server")
3363 (description
3364 "xf86-video-trident is a Trident video driver for the Xorg X server.")
3365 (license license:x11)))
3366
3367
3368 ;; no license
3369 ;; (define-public xf86-video-v4l
3370
3371
3372 (define-public xf86-video-vesa
3373 (package
3374 (name "xf86-video-vesa")
3375 (version "2.3.4")
3376 (source
3377 (origin
3378 (method url-fetch)
3379 (uri (string-append
3380 "mirror://xorg/individual/driver/xf86-video-vesa-"
3381 version
3382 ".tar.bz2"))
3383 (sha256
3384 (base32
3385 "1haiw8r1z8ihk68d0jqph2wsld13w4qkl86biq46fvyxg7cg9pbv"))))
3386 (build-system gnu-build-system)
3387 (inputs `(("xorg-server" ,xorg-server)))
3388 (native-inputs `(("pkg-config" ,pkg-config)))
3389 (home-page "https://www.x.org/wiki/")
3390 (synopsis "VESA video driver for X server")
3391 (description
3392 "xf86-video-vesa is a generic VESA video driver for the Xorg
3393 X server.")
3394 (license license:x11)))
3395
3396
3397 (define-public xf86-video-vmware
3398 (package
3399 (name "xf86-video-vmware")
3400 (version "13.2.1")
3401 (source
3402 (origin
3403 (method url-fetch)
3404 (uri (string-append
3405 "mirror://xorg/individual/driver/xf86-video-vmware-"
3406 version
3407 ".tar.bz2"))
3408 (sha256
3409 (base32
3410 "0azn3g0vcki47n5jddagk2rmbwdvp845k8p7d2r56zxs3w8ggxz2"))))
3411 (build-system gnu-build-system)
3412 (inputs
3413 `(("libx11" ,libx11)
3414 ("libxext" ,libxext)
3415 ("llvm" ,llvm)
3416 ("mesa" ,mesa) ; for xatracker
3417 ("xorg-server" ,xorg-server)))
3418 (native-inputs
3419 `(("eudev" ,eudev)
3420 ("pkg-config" ,pkg-config)))
3421 (home-page "https://www.x.org/wiki/")
3422 (synopsis "VMware SVGA video driver for X server")
3423 (description
3424 "xf86-video-vmware is a VMware SVGA video driver for the Xorg X server.")
3425 (license license:x11)))
3426
3427
3428 (define-public xf86-video-voodoo
3429 (package
3430 (name "xf86-video-voodoo")
3431 (version "1.2.5")
3432 (source
3433 (origin
3434 (method url-fetch)
3435 (uri (string-append
3436 "mirror://xorg/individual/driver/xf86-video-voodoo-"
3437 version
3438 ".tar.bz2"))
3439 (sha256
3440 (base32
3441 "1s6p7yxmi12q4y05va53rljwyzd6ry492r1pgi7wwq6cznivhgly"))
3442 (patches
3443 (list (origin
3444 (method url-fetch)
3445 (uri "https://cgit.freedesktop.org/xorg/driver/\
3446 xf86-video-voodoo/patch/?id=9172ae566a0e85313fc80ab62b4455393eefe593")
3447 (sha256
3448 (base32
3449 "0rndmxf5b8j3hjnhrwrnzsq5024fli134fj1mprhkcrvax2zq8db"))
3450 (file-name "xf86-video-voodoo-pcitag.patch"))))))
3451 (build-system gnu-build-system)
3452 (inputs `(("xf86dgaproto" ,xf86dgaproto)
3453 ("xorg-server" ,xorg-server)))
3454 (native-inputs `(("pkg-config" ,pkg-config)))
3455 (home-page "https://www.x.org/wiki/")
3456 (synopsis "Voodoo/Voodoo2 video driver for X server")
3457 (description
3458 "xf86-video-voodoo is a Voodoo video driver for the Xorg X server.")
3459 (license license:x11)))
3460
3461
3462 ;; Only relevant for the frame buffer on BSD systems.
3463 ;; (define-public xf86-video-wsfb
3464
3465
3466 (define-public xf86bigfontproto
3467 (package
3468 (name "xf86bigfontproto")
3469 (version "1.2.0")
3470 (source
3471 (origin
3472 (method url-fetch)
3473 (uri (string-append
3474 "mirror://xorg/individual/proto/xf86bigfontproto-"
3475 version
3476 ".tar.bz2"))
3477 (sha256
3478 (base32
3479 "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
3480 (build-system gnu-build-system)
3481 (home-page "https://www.x.org/wiki/")
3482 (synopsis "Xorg XF86BigFontProto protocol headers")
3483 (description
3484 "XFree86 Bigfont Extension contains header files and documentation
3485 for the XF86BigFontProto protocol.")
3486 (license license:x11)))
3487
3488
3489 (define-public xf86dgaproto
3490 (package
3491 (name "xf86dgaproto")
3492 (version "2.1")
3493 (source
3494 (origin
3495 (method url-fetch)
3496 (uri (string-append
3497 "mirror://xorg/individual/proto/xf86dgaproto-"
3498 version
3499 ".tar.bz2"))
3500 (sha256
3501 (base32
3502 "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
3503 (build-system gnu-build-system)
3504 (home-page "https://www.x.org/wiki/")
3505 (synopsis "Xorg XF86DGAProto protocol headers")
3506 (description
3507 "XFree86 Direct Graphic Access Extension defines a protocol for
3508 direct linear framebuffer access.")
3509 (license license:x11)))
3510
3511
3512 (define-public xf86driproto
3513 (package
3514 (name "xf86driproto")
3515 (version "2.1.1")
3516 (source
3517 (origin
3518 (method url-fetch)
3519 (uri (string-append
3520 "mirror://xorg/individual/proto/xf86driproto-"
3521 version
3522 ".tar.bz2"))
3523 (sha256
3524 (base32
3525 "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
3526 (build-system gnu-build-system)
3527 (home-page "https://www.x.org/wiki/")
3528 (synopsis "Xorg XF86DRIProto protocol headers")
3529 (description
3530 "XFree86 Direct Rendering Infrastructure Extension defines a
3531 protocol to allow user applications to access the video hardware without
3532 requiring data to be passed through the X server.")
3533 (license license:x11)))
3534
3535
3536 (define-public xf86vidmodeproto
3537 (package
3538 (name "xf86vidmodeproto")
3539 (version "2.3.1")
3540 (source
3541 (origin
3542 (method url-fetch)
3543 (uri (string-append
3544 "mirror://xorg/individual/proto/xf86vidmodeproto-"
3545 version
3546 ".tar.bz2"))
3547 (sha256
3548 (base32
3549 "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
3550 (build-system gnu-build-system)
3551 (home-page "https://www.x.org/wiki/")
3552 (synopsis "Xorg XF86VidModeProto protocol headers")
3553 (description
3554 "XFree86 Video Mode Extension defines a protocol for dynamically
3555 configuring modelines and gamma.")
3556 (license license:x11)))
3557
3558
3559 (define-public xgamma
3560 (package
3561 (name "xgamma")
3562 (version "1.0.6")
3563 (source
3564 (origin
3565 (method url-fetch)
3566 (uri (string-append
3567 "mirror://xorg/individual/app/xgamma-"
3568 version
3569 ".tar.bz2"))
3570 (sha256
3571 (base32
3572 "1lr2nb1fhg5fk2fchqxdxyl739602ggwhmgl2wiv5c8qbidw7w8f"))))
3573 (build-system gnu-build-system)
3574 (inputs
3575 `(("libxxf86vm" ,libxxf86vm)
3576 ("libx11" ,libx11)))
3577 (native-inputs
3578 `(("pkg-config" ,pkg-config)))
3579 (home-page "https://www.x.org/wiki/")
3580 (synopsis "Alter a monitor's gamma correction")
3581 (description
3582 "XGamma is used to query and alter the gamma correction of a
3583 monitor via the X video mode extension.")
3584 (license license:x11)))
3585
3586
3587 (define-public xhost
3588 (package
3589 (name "xhost")
3590 (version "1.0.7")
3591 (source
3592 (origin
3593 (method url-fetch)
3594 (uri (string-append
3595 "mirror://xorg/individual/app/xhost-"
3596 version
3597 ".tar.bz2"))
3598 (sha256
3599 (base32
3600 "16n26xw6l01zq31d4qvsaz50misvizhn7iihzdn5f7s72pp1krlk"))))
3601 (build-system gnu-build-system)
3602 (inputs
3603 `(("libxmu" ,libxmu)
3604 ("libxau" ,libxau)
3605 ("libx11" ,libx11)))
3606 (native-inputs
3607 `(("pkg-config" ,pkg-config)))
3608 (home-page "https://www.x.org/wiki/")
3609 (synopsis "Xorg server access control utility")
3610 (description
3611 "XHost is used to manage the list of host names or user names
3612 allowed to make connections to the X server.")
3613 (license license:x11)))
3614
3615
3616 (define-public xineramaproto
3617 (package
3618 (name "xineramaproto")
3619 (version "1.2.1")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (string-append
3624 "mirror://xorg/individual/proto/xineramaproto-"
3625 version
3626 ".tar.bz2"))
3627 (sha256
3628 (base32
3629 "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
3630 (build-system gnu-build-system)
3631 (native-inputs `(("pkg-config" ,pkg-config)))
3632 (home-page "https://www.x.org/wiki/")
3633 (synopsis "Xorg XineramaProto protocol headers")
3634 (description
3635 "Xinerama Extension allows clients to query information about multiple
3636 physical screens controlled by a single X server that appear as a single
3637 screen to core X11 protocol operations.
3638
3639 This extension provides a common network protocol for querying information
3640 which may be provided by different underlying screen combination
3641 technologies in the X server, such as the original Xinerama multiplexer, or
3642 alternative implementations like XRandR or TwinView.")
3643 (license license:x11)))
3644
3645
3646 (define-public xinput
3647 (package
3648 (name "xinput")
3649 (version "1.6.2")
3650 (source
3651 (origin
3652 (method url-fetch)
3653 (uri (string-append
3654 "mirror://xorg/individual/app/xinput-"
3655 version
3656 ".tar.bz2"))
3657 (sha256
3658 (base32
3659 "1i75mviz9dyqyf7qigzmxq8vn31i86aybm662fzjz5c086dx551n"))))
3660 (build-system gnu-build-system)
3661 (inputs
3662 `(("libxrender" ,libxrender)
3663 ("libxrandr" ,libxrandr)
3664 ("libxinerama" ,libxinerama)
3665 ("libxext" ,libxext)
3666 ("libxi" ,libxi)
3667 ("libx11" ,libx11)
3668 ("inputproto" ,inputproto)))
3669 (native-inputs
3670 `(("pkg-config" ,pkg-config)))
3671 (home-page "https://www.x.org/wiki/")
3672 (synopsis "Configure input devices for X server")
3673 (description
3674 "XInput is used to configure and test XInput devices.")
3675 (license license:x11)))
3676
3677
3678 (define xkbcomp-intermediate ; used as input for xkeyboard-config
3679 (package
3680 (name "xkbcomp-intermediate")
3681 (version "1.4.0")
3682 (source
3683 (origin
3684 (method url-fetch)
3685 (uri (string-append
3686 "mirror://xorg/individual/app/xkbcomp-"
3687 version
3688 ".tar.bz2"))
3689 (sha256
3690 (base32
3691 "0syfc6zscvai824mzihlnrqxhkcr27dzkpy8zndavi83iischsdw"))))
3692 (build-system gnu-build-system)
3693 (inputs
3694 `(("xproto" ,xproto)
3695 ("libxkbfile" ,libxkbfile)
3696 ("libx11" ,libx11)))
3697 (native-inputs
3698 `(("pkg-config" ,pkg-config)))
3699 (home-page "https://www.x.org/wiki/")
3700 (synopsis "Compile XKB keyboard description")
3701 (description
3702 "xkbcomp keymap compiler converts a description of an XKB keymap
3703 into one of several output formats. The most common use for xkbcomp is
3704 to create a compiled keymap file (.xkm extension) which can be read
3705 directly by XKB- capable X servers or utilities.
3706
3707 X Keyboard (XKB) Extension essentially replaces the core protocol
3708 definition of keyboard. The extension makes possible to clearly and
3709 explicitly specify most aspects of keyboard behaviour on per-key basis
3710 and to more closely track the logical and physical state of the
3711 keyboard. It also includes a number of keyboard controls designed to
3712 make keyboards more accessible to people with physical impairments.")
3713 (license license:x11)))
3714
3715 (define-public xkbcomp ; using xkeyboard-config as input
3716 (package (inherit xkbcomp-intermediate)
3717 (name "xkbcomp")
3718 (inputs
3719 `(,@(package-inputs xkbcomp-intermediate)
3720 ("xkeyboard-config" ,xkeyboard-config)))
3721 (arguments
3722 `(#:configure-flags
3723 (list (string-append "--with-xkb-config-root="
3724 (assoc-ref %build-inputs "xkeyboard-config")
3725 "/share/X11/xkb"))))))
3726
3727
3728 (define-public xkbevd
3729 (package
3730 (name "xkbevd")
3731 (version "1.1.4")
3732 (source
3733 (origin
3734 (method url-fetch)
3735 (uri (string-append
3736 "mirror://xorg/individual/app/xkbevd-"
3737 version
3738 ".tar.bz2"))
3739 (sha256
3740 (base32
3741 "0sprjx8i86ljk0l7ldzbz2xlk8916z5zh78cafjv8k1a63js4c14"))))
3742 (build-system gnu-build-system)
3743 (inputs
3744 `(("libxkbfile" ,libxkbfile)
3745 ("libx11" ,libx11)))
3746 (native-inputs
3747 `(("pkg-config" ,pkg-config)))
3748 (home-page "https://www.x.org/wiki/")
3749 (synopsis "XKB event daemon demo")
3750 (description
3751 "XKB event daemon listens for the specified XKB events and executes
3752 requested commands if they occur.")
3753 (license license:x11)))
3754
3755
3756 (define-public xkbutils
3757 (package
3758 (name "xkbutils")
3759 (version "1.0.4")
3760 (source
3761 (origin
3762 (method url-fetch)
3763 (uri (string-append
3764 "mirror://xorg/individual/app/xkbutils-"
3765 version
3766 ".tar.bz2"))
3767 (sha256
3768 (base32
3769 "0c412isxl65wplhl7nsk12vxlri29lk48g3p52hbrs3m0awqm8fj"))))
3770 (build-system gnu-build-system)
3771 (inputs
3772 `(("libxt" ,libxt)
3773 ("xproto" ,xproto)
3774 ("libxaw" ,libxaw)
3775 ("inputproto" ,inputproto)))
3776 (native-inputs
3777 `(("pkg-config" ,pkg-config)))
3778 (home-page "https://www.x.org/wiki/")
3779 (synopsis "XKB utilities")
3780 (description
3781 "XKBUtils is a collection of small utilities for X Keyboard (XKB)
3782 extension to the X11 protocol. It includes:
3783
3784 - xkbbell: generate XKB bell events;
3785
3786 - xkbvleds: display the state of LEDs on an XKB keyboard in a window;
3787
3788 - xkbwatch: reports changes in the XKB keyboard state.")
3789 (license license:x11)))
3790
3791
3792 (define-public xkeyboard-config
3793 (package
3794 (name "xkeyboard-config")
3795 (version "2.20")
3796 (source
3797 (origin
3798 (method url-fetch)
3799 (uri (string-append
3800 "mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-"
3801 version
3802 ".tar.bz2"))
3803 (sha256
3804 (base32
3805 "0d619g4r0w1f6q5qmaqjnsc0956gi02fqgpisqffzqy4acjwggyi"))))
3806 (build-system gnu-build-system)
3807 (inputs
3808 `(("gettext" ,gettext-minimal)
3809 ("libx11" ,libx11)
3810 ("xkbcomp-intermediate" ,xkbcomp-intermediate)))
3811 (native-inputs
3812 `(("intltool" ,intltool)
3813 ("pkg-config" ,pkg-config)))
3814 (home-page "https://www.x.org/wiki/")
3815 (synopsis "Xorg XKB configuration files")
3816 (description
3817 "xkeyboard-config provides a database for X Keyboard (XKB) Extension.
3818 There are five components that define a complete keyboard mapping:
3819 symbols, geometry, keycodes, compat, and types; these five components
3820 can be combined together using the 'rules' component of this database.")
3821 (license license:x11)))
3822
3823
3824 (define-public xkill
3825 (package
3826 (name "xkill")
3827 (version "1.0.4")
3828 (source
3829 (origin
3830 (method url-fetch)
3831 (uri (string-append
3832 "mirror://xorg/individual/app/xkill-"
3833 version
3834 ".tar.bz2"))
3835 (sha256
3836 (base32
3837 "0bl1ky8ps9jg842j4mnmf4zbx8nkvk0h77w7bqjlpwij9wq2mvw8"))))
3838 (build-system gnu-build-system)
3839 (inputs
3840 `(("libxmu" ,libxmu)
3841 ("libx11" ,libx11)))
3842 (native-inputs
3843 `(("pkg-config" ,pkg-config)))
3844 (home-page "https://www.x.org/wiki/")
3845 (synopsis "Kill a client by its X resource")
3846 (description
3847 "XKill is used to force the X server to close connections to
3848 clients. This program is very dangerous, but is useful for aborting
3849 programs that have displayed undesired windows on a user's screen.")
3850 (license license:x11)))
3851
3852
3853 (define-public xlsatoms
3854 (package
3855 (name "xlsatoms")
3856 (version "1.1.2")
3857 (source
3858 (origin
3859 (method url-fetch)
3860 (uri (string-append
3861 "mirror://xorg/individual/app/xlsatoms-"
3862 version
3863 ".tar.bz2"))
3864 (sha256
3865 (base32
3866 "196yjik910xsr7dwy8daa0amr0r22ynfs360z0ndp9mx7mydrra7"))))
3867 (build-system gnu-build-system)
3868 (inputs
3869 `(("libxcb" ,libxcb)))
3870 (native-inputs
3871 `(("pkg-config" ,pkg-config)))
3872 (home-page "https://www.x.org/wiki/")
3873 (synopsis "List interned X server atoms")
3874 (description
3875 "XLsAtoms is used to list the interned atoms defined on X server.")
3876 (license license:x11)))
3877
3878
3879 (define-public xlsclients
3880 (package
3881 (name "xlsclients")
3882 (version "1.1.3")
3883 (source
3884 (origin
3885 (method url-fetch)
3886 (uri (string-append
3887 "mirror://xorg/individual/app/xlsclients-"
3888 version
3889 ".tar.bz2"))
3890 (sha256
3891 (base32
3892 "0g9x7rrggs741x9xwvv1k9qayma980d88nhdqw7j3pn3qvy6d5jx"))))
3893 (build-system gnu-build-system)
3894 (inputs
3895 `(("libxcb" ,libxcb)))
3896 (native-inputs
3897 `(("pkg-config" ,pkg-config)))
3898 (home-page "https://www.x.org/wiki/")
3899 (synopsis "List client applications running on a display")
3900 (description
3901 "XLsClients is used to list information about the client programs
3902 running on X server.")
3903 (license license:x11)))
3904
3905
3906 (define-public xlsfonts
3907 (package
3908 (name "xlsfonts")
3909 (version "1.0.5")
3910 (source
3911 (origin
3912 (method url-fetch)
3913 (uri (string-append
3914 "mirror://xorg/individual/app/xlsfonts-"
3915 version
3916 ".tar.bz2"))
3917 (sha256
3918 (base32
3919 "1yi774g6r1kafsbnxbkrwyndd3i60362ck1fps9ywz076pn5naa0"))))
3920 (build-system gnu-build-system)
3921 (inputs
3922 `(("xproto" ,xproto)
3923 ("libx11" ,libx11)))
3924 (native-inputs
3925 `(("pkg-config" ,pkg-config)))
3926 (home-page "https://www.x.org/wiki/")
3927 (synopsis "List fonts available from an X server")
3928 (description
3929 "xlsfonts lists fonts available from an X server via the X11 core
3930 protocol.")
3931 (license license:x11)))
3932
3933 (define-public xfontsel
3934 (package
3935 (name "xfontsel")
3936 (version "1.0.5")
3937 (source (origin
3938 (method url-fetch)
3939 (uri (string-append
3940 "mirror://xorg/individual/app/xfontsel-"
3941 version ".tar.bz2"))
3942 (sha256
3943 (base32
3944 "1grir464hy52a71r3mpm9mzvkf7nwr3vk0b1vc27pd3gp588a38p"))))
3945 (build-system gnu-build-system)
3946 (arguments
3947 `(#:configure-flags
3948 (list (string-append "--with-appdefaultdir="
3949 %output ,%app-defaults-dir))))
3950 (inputs
3951 `(("libx11" ,libx11)
3952 ("libxaw" ,libxaw)
3953 ("libxmu" ,libxmu)
3954 ("libxt" ,libxt)))
3955 (native-inputs
3956 `(("pkg-config" ,pkg-config)))
3957 (home-page "https://www.x.org/wiki/")
3958 (synopsis "Browse and select X font names")
3959 (description
3960 "XFontSel provides a simple way to display the X11 core protocol fonts
3961 known to your X server, examine samples of each, and retrieve the X Logical
3962 Font Description (XLFD) full name for a font.")
3963 (license license:x11)))
3964
3965 (define-public xfd
3966 (package
3967 (name "xfd")
3968 (version "1.1.2")
3969 (source (origin
3970 (method url-fetch)
3971 (uri (string-append
3972 "mirror://xorg/individual/app/xfd-"
3973 version ".tar.bz2"))
3974 (sha256
3975 (base32
3976 "0n97iqqap9wyxjan2n520vh4rrf5bc0apsw2k9py94dqzci258y1"))))
3977 (build-system gnu-build-system)
3978 (arguments
3979 `(#:configure-flags
3980 (list (string-append "--with-appdefaultdir="
3981 %output ,%app-defaults-dir))))
3982 (inputs
3983 `(("fontconfig" ,fontconfig)
3984 ("libx11" ,libx11)
3985 ("libxaw" ,libxaw)
3986 ("libxft" ,libxft)
3987 ("libxmu" ,libxmu)
3988 ("libxrender" ,libxrender)))
3989 (native-inputs
3990 `(("gettext" ,gettext-minimal)
3991 ("pkg-config" ,pkg-config)))
3992 (home-page "https://www.x.org/wiki/")
3993 (synopsis "Display all the characters in an X font")
3994 (description
3995 "XFD (X Font Display) package provides an utility that displays a
3996 window containing the name of the font being displayed, a row of command
3997 buttons, several lines of text for displaying character metrics, and a grid
3998 containing one glyph per cell.")
3999 (license license:x11)))
4000
4001 (define-public xmodmap
4002 (package
4003 (name "xmodmap")
4004 (version "1.0.9")
4005 (source
4006 (origin
4007 (method url-fetch)
4008 (uri (string-append
4009 "mirror://xorg/individual/app/xmodmap-"
4010 version
4011 ".tar.bz2"))
4012 (sha256
4013 (base32
4014 "0y649an3jqfq9klkp9y5gj20xb78fw6g193f5mnzpl0hbz6fbc5p"))
4015 (patches (search-patches "xmodmap-asprintf.patch"))))
4016 (build-system gnu-build-system)
4017 (inputs
4018 `(("xproto" ,xproto)
4019 ("libx11" ,libx11)))
4020 (native-inputs
4021 `(("pkg-config" ,pkg-config)))
4022 (home-page "https://www.x.org/wiki/")
4023 (synopsis "Modify keymaps and button mappings on X server")
4024 (description
4025 "Xmodmap is used to display and edit the keyboard modifier map and
4026 keymap table that are used by client programs running on X server to
4027 convert event keycodes into keysyms. It is usually run from the user's
4028 session startup script to configure the keyboard according to personal
4029 tastes.")
4030 (license license:x11)))
4031
4032
4033 ;; no license
4034 ;; (define-public xorg-docs
4035
4036
4037 (define-public xorg-sgml-doctools
4038 (package
4039 (name "xorg-sgml-doctools")
4040 (version "1.11")
4041 (source
4042 (origin
4043 (method url-fetch)
4044 (uri (string-append
4045 "mirror://xorg/individual/doc/xorg-sgml-doctools-"
4046 version
4047 ".tar.bz2"))
4048 (sha256
4049 (base32
4050 "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
4051 (build-system gnu-build-system)
4052 (native-inputs `(("pkg-config" ,pkg-config)))
4053 (home-page "https://www.x.org/wiki/")
4054 (synopsis "Xorg SGML documentation tools")
4055 (description
4056 "This package provides a common set of SGML entities and XML/CSS style
4057 sheets used in building/formatting the documentation provided in other
4058 Xorg packages. It's typically only needed by people building from
4059 source who want to produce formatted documentation from their builds, or
4060 those who have installed the HTML version of the documentation, which
4061 refers to the included common xorg.css stylesheet.")
4062 (license license:x11)))
4063
4064
4065 (define-public xpr
4066 (package
4067 (name "xpr")
4068 (version "1.0.4")
4069 (source
4070 (origin
4071 (method url-fetch)
4072 (uri (string-append
4073 "mirror://xorg/individual/app/xpr-"
4074 version
4075 ".tar.bz2"))
4076 (sha256
4077 (base32
4078 "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
4079 (build-system gnu-build-system)
4080 (inputs
4081 `(("xproto" ,xproto)
4082 ("libxmu" ,libxmu)
4083 ("libx11" ,libx11)))
4084 (native-inputs
4085 `(("pkg-config" ,pkg-config)))
4086 (home-page "https://www.x.org/wiki/")
4087 (synopsis "Print an X window dump from xwd")
4088 (description
4089 "XPr takes as input a window dump file produced by xwd and formats
4090 it for output on various types of printers.")
4091 (license license:x11)))
4092
4093
4094 (define-public xprop
4095 (package
4096 (name "xprop")
4097 (version "1.2.2")
4098 (source
4099 (origin
4100 (method url-fetch)
4101 (uri (string-append
4102 "mirror://xorg/individual/app/xprop-"
4103 version
4104 ".tar.bz2"))
4105 (sha256
4106 (base32
4107 "1ilvhqfjcg6f1hqahjkp8qaay9rhvmv2blvj3w9asraq0aqqivlv"))))
4108 (build-system gnu-build-system)
4109 (inputs
4110 `(("xproto" ,xproto)
4111 ("libx11" ,libx11)))
4112 (native-inputs
4113 `(("pkg-config" ,pkg-config)))
4114 (home-page "https://www.x.org/wiki/")
4115 (synopsis "Display X server properties")
4116 (description
4117 "xprop is used to display and/or set window and font properties of
4118 an X server.")
4119 (license license:x11)))
4120
4121
4122 (define-public xrandr
4123 (package
4124 (name "xrandr")
4125 (version "1.5.0")
4126 (source
4127 (origin
4128 (method url-fetch)
4129 (uri (string-append
4130 "mirror://xorg/individual/app/xrandr-"
4131 version ".tar.bz2"))
4132 (sha256
4133 (base32
4134 "1kaih7rmzxr1vp5a5zzjhm5x7dn9mckya088sqqw026pskhx9ky1"))))
4135 (build-system gnu-build-system)
4136 (inputs
4137 `(("libxrender" ,libxrender)
4138 ("libxrandr" ,libxrandr)
4139 ("xproto" ,xproto)
4140 ("libx11" ,libx11)))
4141 (native-inputs
4142 `(("pkg-config" ,pkg-config)))
4143 (home-page "https://www.x.org/wiki/")
4144 (synopsis "Command line interface to X RandR extension")
4145 (description
4146 "xrandr - primitive command line interface to X11 Resize, Rotate,
4147 and Reflect (RandR) extension.")
4148 (license license:x11)))
4149
4150
4151 (define-public xrdb
4152 (package
4153 (name "xrdb")
4154 (version "1.1.0")
4155 (source
4156 (origin
4157 (method url-fetch)
4158 (uri (string-append
4159 "mirror://xorg/individual/app/xrdb-"
4160 version
4161 ".tar.bz2"))
4162 (sha256
4163 (base32
4164 "0nsnr90wazcdd50nc5dqswy0bmq6qcj14nnrhyi7rln9pxmpp0kk"))))
4165 (build-system gnu-build-system)
4166 (inputs
4167 `(("libxmu" ,libxmu)
4168 ("libx11" ,libx11)))
4169 (native-inputs
4170 `(("pkg-config" ,pkg-config)))
4171 (home-page "https://www.x.org/wiki/")
4172 (synopsis "X server resource database utility")
4173 (description
4174 "XRDB is used to get or set the contents of the RESOURCE_MANAGER
4175 property on the root window of screen 0, or the SCREEN_RESOURCES
4176 property on the root window of any or all screens, or everything
4177 combined. You would normally run this program from your X startup
4178 file.")
4179 (license license:x11)))
4180
4181
4182 (define-public xrefresh
4183 (package
4184 (name "xrefresh")
4185 (version "1.0.5")
4186 (source
4187 (origin
4188 (method url-fetch)
4189 (uri (string-append
4190 "mirror://xorg/individual/app/xrefresh-"
4191 version
4192 ".tar.bz2"))
4193 (sha256
4194 (base32
4195 "1mlinwgvql6s1rbf46yckbfr9j22d3c3z7jx3n6ix7ca18dnf4rj"))))
4196 (build-system gnu-build-system)
4197 (inputs
4198 `(("libx11" ,libx11)))
4199 (native-inputs
4200 `(("pkg-config" ,pkg-config)))
4201 (home-page "https://www.x.org/wiki/")
4202 (synopsis "Refresh all or part of an X screen")
4203 (description
4204 "Xrefresh is a simple X program that causes all or part of your
4205 screen to be repainted. This is useful when system messages have messed
4206 up your screen.")
4207 (license license:x11)))
4208
4209
4210 (define-public xset
4211 (package
4212 (name "xset")
4213 (version "1.2.3")
4214 (source
4215 (origin
4216 (method url-fetch)
4217 (uri (string-append
4218 "mirror://xorg/individual/app/xset-"
4219 version
4220 ".tar.bz2"))
4221 (sha256
4222 (base32
4223 "0qw0iic27bz3yz2wynf1gxs70hhkcf9c4jrv7zhlg1mq57xz90j3"))))
4224 (build-system gnu-build-system)
4225 (inputs
4226 `(("xproto" ,xproto)
4227 ("libxmu" ,libxmu)
4228 ("libxext" ,libxext)
4229 ("libx11" ,libx11)))
4230 (native-inputs
4231 `(("pkg-config" ,pkg-config)))
4232 (home-page "https://www.x.org/wiki/")
4233 (synopsis "User preference utility for X server")
4234 (description
4235 "XSet is used to set various user preference options of the display.")
4236 (license license:x11)))
4237
4238
4239 (define-public xsetroot
4240 (package
4241 (name "xsetroot")
4242 (version "1.1.1")
4243 (source
4244 (origin
4245 (method url-fetch)
4246 (uri (string-append
4247 "mirror://xorg/individual/app/xsetroot-"
4248 version
4249 ".tar.bz2"))
4250 (sha256
4251 (base32
4252 "1nf3ii31m1knimbidaaym8p61fq3blv8rrdr2775yhcclym5s8ds"))))
4253 (build-system gnu-build-system)
4254 (inputs
4255 `(("libxmu" ,libxmu)
4256 ("libxcursor" ,libxcursor)
4257 ("xbitmaps" ,xbitmaps)))
4258 (native-inputs
4259 `(("pkg-config" ,pkg-config)))
4260 (home-page "https://www.x.org/wiki/")
4261 (synopsis "Root window parameter setting utility for X server")
4262 (description
4263 "XSetRoot allows you to tailor the appearance of the root window on
4264 a display running X server.")
4265 (license license:x11)))
4266
4267
4268 (define-public xtrans
4269 (package
4270 (name "xtrans")
4271 (version "1.3.5")
4272 (source
4273 (origin
4274 (method url-fetch)
4275 (uri (string-append
4276 "mirror://xorg/individual/lib/xtrans-"
4277 version
4278 ".tar.bz2"))
4279 (sha256
4280 (base32
4281 "00c3ph17acnsch3gbdmx33b9ifjnl5w7vx8hrmic1r1cjcv3pgdd"))))
4282 (build-system gnu-build-system)
4283 (native-inputs `(("pkg-config" ,pkg-config)))
4284 (home-page "https://www.x.org/wiki/")
4285 (synopsis "Xorg Network Transport layer library")
4286 (description
4287 "Xtrans is a library of code that is shared among various X packages to
4288 handle network protocol transport in a modular fashion, allowing a single
4289 place to add new transport types. It is used by the X server, libX11,
4290 libICE, the X font server, and related components.")
4291 (license license:x11)))
4292
4293
4294 (define-public xvinfo
4295 (package
4296 (name "xvinfo")
4297 (version "1.1.3")
4298 (source
4299 (origin
4300 (method url-fetch)
4301 (uri (string-append
4302 "mirror://xorg/individual/app/xvinfo-"
4303 version
4304 ".tar.bz2"))
4305 (sha256
4306 (base32
4307 "1sz5wqhxd1fqsfi1w5advdlwzkizf2fgl12hdpk66f7mv9l8pflz"))))
4308 (build-system gnu-build-system)
4309 (inputs
4310 `(("libxext" ,libxext)
4311 ("libxv" ,libxv)
4312 ("libx11" ,libx11)))
4313 (native-inputs
4314 `(("pkg-config" ,pkg-config)))
4315 (home-page "https://www.x.org/wiki/")
4316 (synopsis "Print out X-Video extension adaptor information")
4317 (description
4318 "XVInfo is used to print out the capabilities of any video adaptors
4319 associated with the display that are accessible through the X-Video
4320 extension.")
4321 (license license:x11)))
4322
4323
4324 (define-public xwd
4325 (package
4326 (name "xwd")
4327 (version "1.0.6")
4328 (source
4329 (origin
4330 (method url-fetch)
4331 (uri (string-append
4332 "mirror://xorg/individual/app/xwd-"
4333 version
4334 ".tar.bz2"))
4335 (sha256
4336 (base32
4337 "0ybx48agdvjp9lgwvcw79r1x6jbqbyl3fliy3i5xwy4d4si9dcrv"))))
4338 (build-system gnu-build-system)
4339 (inputs
4340 `(("libxt" ,libxt)
4341 ("libxkbfile" ,libxkbfile)
4342 ("xproto" ,xproto)))
4343 (native-inputs
4344 `(("pkg-config" ,pkg-config)))
4345 (home-page "https://www.x.org/wiki/")
4346 (synopsis "Dump current contents of X window or screen to file")
4347 (description
4348 "Xwd is used to store window images in a specially formatted dump
4349 file. This file can then be read by various other X utilities for
4350 redisplay, printing, editing, formatting, archiving, image processing,
4351 etc. The target window is selected by clicking the pointer in the
4352 desired window. The keyboard bell is rung once at the beginning of the
4353 dump and twice whenthe dump is completed.")
4354 (license license:x11)))
4355
4356
4357 (define-public xwininfo
4358 (package
4359 (name "xwininfo")
4360 (version "1.1.3")
4361 (source
4362 (origin
4363 (method url-fetch)
4364 (uri (string-append
4365 "mirror://xorg/individual/app/xwininfo-"
4366 version
4367 ".tar.bz2"))
4368 (sha256
4369 (base32
4370 "1y1zn8ijqslb5lfpbq4bb78kllhch8in98ps7n8fg3dxjpmb13i1"))))
4371 (build-system gnu-build-system)
4372 (inputs
4373 `(("libx11" ,libx11)
4374 ("xproto" ,xproto)))
4375 (native-inputs
4376 `(("pkg-config" ,pkg-config)))
4377 (home-page "https://www.x.org/wiki/")
4378 (synopsis "Window information utility for X server")
4379 (description
4380 "XWinInfo is used to print out information about windows on an X server.
4381 Various information is displayed depending on which options are selected.")
4382 (license license:x11)))
4383
4384
4385 (define-public xwud
4386 (package
4387 (name "xwud")
4388 (version "1.0.4")
4389 (source
4390 (origin
4391 (method url-fetch)
4392 (uri (string-append
4393 "mirror://xorg/individual/app/xwud-"
4394 version
4395 ".tar.bz2"))
4396 (sha256
4397 (base32
4398 "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
4399 (build-system gnu-build-system)
4400 (inputs
4401 `(("xproto" ,xproto)
4402 ("libx11" ,libx11)))
4403 (native-inputs
4404 `(("pkg-config" ,pkg-config)))
4405 (home-page "https://www.x.org/wiki/")
4406 (synopsis "Display an X window dump from xwd")
4407 (description
4408 "Xwud is used to display in a window an image saved in a specially
4409 formatted dump file, such as produced by xwd.")
4410 (license license:x11)))
4411
4412 (define-public xorg-rgb
4413 (package
4414 (name "xorg-rgb")
4415 (version "1.0.6")
4416 (source
4417 (origin
4418 (method url-fetch)
4419 (uri (string-append
4420 "mirror://xorg/individual/app/rgb-"
4421 version
4422 ".tar.bz2"))
4423 (sha256
4424 (base32
4425 "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv"))))
4426 (build-system gnu-build-system)
4427 (inputs
4428 `(("xproto" ,xproto)))
4429 (native-inputs
4430 `(("pkg-config" ,pkg-config)))
4431 (home-page "http://www.x.org/wiki/")
4432 (synopsis "X color name database")
4433 (description
4434 "This package provides the X color name database.")
4435 (license license:x11)))
4436
4437 ;; packages of height 1 in the propagated-inputs tree
4438
4439 (define-public fixesproto
4440 (package
4441 (name "fixesproto")
4442 (version "5.0")
4443 (source
4444 (origin
4445 (method url-fetch)
4446 (uri (string-append
4447 "mirror://xorg/individual/proto/fixesproto-"
4448 version
4449 ".tar.bz2"))
4450 (sha256
4451 (base32
4452 "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
4453 (build-system gnu-build-system)
4454 (propagated-inputs
4455 `(("xextproto" ,xextproto)))
4456 (native-inputs
4457 `(("pkg-config" ,pkg-config)))
4458 (home-page "https://www.x.org/wiki/")
4459 (synopsis "Xorg FixesProto protocol headers")
4460 (description
4461 "Fixes Extension makes changes to many areas of the protocol to resolve
4462 issues raised by application interaction with core protocol mechanisms that
4463 cannot be adequately worked around on the client side of the wire.")
4464 (license license:x11)))
4465
4466
4467 (define-public libxdamage
4468 (package
4469 (name "libxdamage")
4470 (version "1.1.4")
4471 (source
4472 (origin
4473 (method url-fetch)
4474 (uri (string-append
4475 "mirror://xorg/individual/lib/libXdamage-"
4476 version
4477 ".tar.bz2"))
4478 (sha256
4479 (base32
4480 "1bamagq7g6s0d23l8rb3nppj8ifqj05f7z9bhbs4fdg8az3ffgvw"))))
4481 (build-system gnu-build-system)
4482 (propagated-inputs
4483 ;; These are all in the Requires or Requires.private field of xdamage.pc
4484 `(("damageproto" ,damageproto)
4485 ("libxfixes" ,libxfixes)
4486 ("xproto" ,xproto)
4487 ("libx11" ,libx11)))
4488 (native-inputs
4489 `(("pkg-config" ,pkg-config)))
4490 (home-page "https://www.x.org/wiki/")
4491 (synopsis "Xorg Damage Extension library")
4492 (description "Xorg library for the XDamage extension.")
4493 (license license:x11)))
4494
4495
4496 (define-public libxext
4497 (package
4498 (name "libxext")
4499 (version "1.3.3")
4500 (source
4501 (origin
4502 (method url-fetch)
4503 (uri (string-append
4504 "mirror://xorg/individual/lib/libXext-"
4505 version
4506 ".tar.bz2"))
4507 (sha256
4508 (base32
4509 "0dbfn5bznnrhqzvkrcmw4c44yvvpwdcsrvzxf4rk27r36b9x865m"))))
4510 (build-system gnu-build-system)
4511 (propagated-inputs
4512 `(("xextproto" ,xextproto)))
4513 (inputs
4514 `(("libxau" ,libxau)
4515 ("libx11" ,libx11)))
4516 (native-inputs
4517 `(("pkg-config" ,pkg-config)))
4518 (home-page "https://www.x.org/wiki/")
4519 (synopsis "Xorg Common extensions library")
4520 (description
4521 "Library for common extensions to the X11 protocol.")
4522 (license license:x11)))
4523
4524
4525 (define-public libxinerama
4526 (package
4527 (name "libxinerama")
4528 (version "1.1.3")
4529 (source
4530 (origin
4531 (method url-fetch)
4532 (uri (string-append
4533 "mirror://xorg/individual/lib/libXinerama-"
4534 version
4535 ".tar.bz2"))
4536 (sha256
4537 (base32
4538 "1qlqfvzw45gdzk9xirgwlp2qgj0hbsyiqj8yh8zml2bk2ygnjibs"))))
4539 (build-system gnu-build-system)
4540 (propagated-inputs
4541 `(("xineramaproto" ,xineramaproto)))
4542 (inputs
4543 `(("libxext" ,libxext)
4544 ("libx11" ,libx11)))
4545 (native-inputs
4546 `(("pkg-config" ,pkg-config)))
4547 (home-page "https://www.x.org/wiki/")
4548 (synopsis "Xorg Xinerama protocol library")
4549 (description "API for Xinerama extension to X11 protocol.")
4550 (license license:x11)))
4551
4552
4553 (define-public libxp
4554 (package
4555 (name "libxp")
4556 (version "1.0.3")
4557 (source
4558 (origin
4559 (method url-fetch)
4560 (uri (string-append
4561 "mirror://xorg/individual/lib/libXp-"
4562 version
4563 ".tar.bz2"))
4564 (sha256
4565 (base32
4566 "0mwc2jwmq03b1m9ihax5c6gw2ln8rc70zz4fsj3kb7440nchqdkz"))))
4567 (build-system gnu-build-system)
4568 (propagated-inputs
4569 `(("printproto" ,printproto)))
4570 (inputs
4571 `(("libx11" ,libx11)
4572 ("libxext" ,libxext)))
4573 (native-inputs
4574 `(("pkg-config" ,pkg-config)))
4575 (home-page "https://www.x.org/wiki/")
4576 (synopsis "Xorg Print Client library")
4577 (description "Xorg Print Client library.")
4578 (license license:x11)))
4579
4580
4581 (define-public libxrender
4582 (package
4583 (name "libxrender")
4584 (version "0.9.10")
4585 (source
4586 (origin
4587 (method url-fetch)
4588 (uri (string-append
4589 "mirror://xorg/individual/lib/libXrender-"
4590 version
4591 ".tar.bz2"))
4592 (sha256
4593 (base32
4594 "0j89cnb06g8x79wmmnwzykgkkfdhin9j7hjpvsxwlr3fz1wmjvf0"))))
4595 (build-system gnu-build-system)
4596 (propagated-inputs
4597 `(("renderproto" ,renderproto)))
4598 (inputs
4599 `(("xproto" ,xproto)
4600 ("libx11" ,libx11)))
4601 (native-inputs
4602 `(("pkg-config" ,pkg-config)))
4603 (home-page "https://www.x.org/wiki/")
4604 (synopsis "Xorg Render Extension library")
4605 (description "Library for the Render Extension to the X11 protocol.")
4606 (license license:x11)))
4607
4608 (define-public libxtst
4609 (package
4610 (name "libxtst")
4611 (version "1.2.3")
4612 (source
4613 (origin
4614 (method url-fetch)
4615 (uri (string-append
4616 "mirror://xorg/individual/lib/libXtst-"
4617 version
4618 ".tar.bz2"))
4619 (sha256
4620 (base32
4621 "012jpyj7xfm653a9jcfqbzxyywdmwb2b5wr1dwylx14f3f54jma6"))))
4622 (build-system gnu-build-system)
4623 (propagated-inputs
4624 `(("recordproto" ,recordproto)
4625 ("libxi" ,libxi)))
4626 (inputs
4627 `(("libx11" ,libx11)
4628 ("inputproto" ,inputproto)))
4629 (native-inputs
4630 `(("pkg-config" ,pkg-config)))
4631 (home-page "https://www.x.org/wiki/")
4632 (synopsis "Xorg library for Xtest and Record extensions")
4633 (description
4634 "libXtst provides the Xlib-based client API for the XTEST & RECORD
4635 extensions.
4636
4637 The XTEST extension is a minimal set of client and server extensions
4638 required to completely test the X11 server with no user intervention. This
4639 extension is not intended to support general journaling and playback of user
4640 actions.
4641
4642 The RECORD extension supports the recording and reporting of all core X
4643 protocol and arbitrary X extension protocol.")
4644 (license license:x11)))
4645
4646 (define-public libxv
4647 (package
4648 (name "libxv")
4649 (version "1.0.11")
4650 (source
4651 (origin
4652 (method url-fetch)
4653 (uri (string-append
4654 "mirror://xorg/individual/lib/libXv-"
4655 version
4656 ".tar.bz2"))
4657 (sha256
4658 (base32
4659 "125hn06bd3d8y97hm2pbf5j55gg4r2hpd3ifad651i4sr7m16v6j"))))
4660 (build-system gnu-build-system)
4661 (propagated-inputs
4662 `(("videoproto" ,videoproto)))
4663 (inputs
4664 `(("xproto" ,xproto)
4665 ("libxext" ,libxext)
4666 ("libx11" ,libx11)))
4667 (native-inputs
4668 `(("pkg-config" ,pkg-config)))
4669 (home-page "https://www.x.org/wiki/")
4670 (synopsis "Xorg XVideo Extension library")
4671 (description "Library for the X Video Extension to the X11 protocol.")
4672 (license license:x11)))
4673
4674 (define-public mkfontdir
4675 (package
4676 (name "mkfontdir")
4677 (version "1.0.7")
4678 (source
4679 (origin
4680 (method url-fetch)
4681 (uri (string-append
4682 "mirror://xorg/individual/app/mkfontdir-"
4683 version
4684 ".tar.bz2"))
4685 (sha256
4686 (base32
4687 "0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
4688 (build-system gnu-build-system)
4689 (arguments
4690 '(#:phases
4691 (modify-phases %standard-phases
4692 (add-after 'install 'wrap-mkfontdir
4693 (lambda* (#:key inputs outputs #:allow-other-keys)
4694 (wrap-program (string-append (assoc-ref outputs "out")
4695 "/bin/mkfontdir")
4696 `("PATH" ":" prefix
4697 (,(string-append (assoc-ref inputs "mkfontscale")
4698 "/bin")))))))))
4699 (inputs
4700 `(("mkfontscale" ,mkfontscale)))
4701 (native-inputs
4702 `(("pkg-config" ,pkg-config)))
4703 (home-page "https://www.x.org/wiki/")
4704 (synopsis "Create an index of X font files in a directory")
4705 (description
4706 "MkFontDir creates the 'fonts.dir' files needed by the legacy X
4707 server core font system. The current implementation is a simple wrapper
4708 script around the mkfontscale program.")
4709 (license license:x11)))
4710
4711
4712 (define-public xproto
4713 (package
4714 (name "xproto")
4715 (version "7.0.31")
4716 (source
4717 (origin
4718 (method url-fetch)
4719 (uri (string-append
4720 "mirror://xorg/individual/proto/xproto-"
4721 version
4722 ".tar.bz2"))
4723 (sha256
4724 (base32
4725 "0ivpxz0rx2a7nahkpkhfgymz7j0pwzaqvyqpdgw9afmxl1yp9yf6"))))
4726 (build-system gnu-build-system)
4727 (propagated-inputs
4728 `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
4729 (native-inputs
4730 `(("pkg-config" ,pkg-config)))
4731 (home-page "https://www.x.org/wiki/")
4732 (synopsis "Xorg X11Proto protocol headers")
4733 (description
4734 "XProto provides the headers and specification documents defining
4735 the X Window System Core Protocol, Version 11.
4736
4737 It also includes a number of headers that aren't purely protocol related,
4738 but are depended upon by many other X Window System packages to provide
4739 common definitions and porting layer.")
4740 (license license:x11)))
4741
4742
4743
4744 ;; packages of height 2 in the propagated-inputs tree
4745
4746 (define-public libice
4747 (package
4748 (name "libice")
4749 (version "1.0.9")
4750 (source
4751 (origin
4752 (method url-fetch)
4753 (uri (string-append
4754 "mirror://xorg/individual/lib/libICE-"
4755 version
4756 ".tar.bz2"))
4757 (sha256
4758 (base32
4759 "00p2b6bsg6kcdbb39bv46339qcywxfl4hsrz8asm4hy6q7r34w4g"))))
4760 (build-system gnu-build-system)
4761 (propagated-inputs
4762 `(("xproto" ,xproto)))
4763 (inputs
4764 `(("libbsd" ,libbsd)
4765 ("xtrans" ,xtrans)))
4766 (native-inputs
4767 `(("pkg-config" ,pkg-config)))
4768 (home-page "https://www.x.org/wiki/")
4769 (synopsis "Xorg Inter-Client Exchange library")
4770 (description "Xorg Inter-Client Exchange library.")
4771 (license license:x11)))
4772
4773
4774 (define-public libxau
4775 (package
4776 (name "libxau")
4777 (version "1.0.8")
4778 (source
4779 (origin
4780 (method url-fetch)
4781 (uri (string-append
4782 "mirror://xorg/individual/lib/libXau-"
4783 version
4784 ".tar.bz2"))
4785 (sha256
4786 (base32
4787 "1wm4pv12f36cwzhldpp7vy3lhm3xdcnp4f184xkxsp7b18r7gm7x"))))
4788 (build-system gnu-build-system)
4789 (propagated-inputs
4790 `(("xproto" ,xproto)))
4791 (native-inputs
4792 `(("pkg-config" ,pkg-config)))
4793 (home-page "https://www.x.org/wiki/")
4794 (synopsis "Xorg Authorization library")
4795 (description
4796 "libXau provides an authorization library for individual access to
4797 an X Window System display.")
4798 (license license:x11)))
4799
4800 (define-public libxfixes
4801 (package
4802 (name "libxfixes")
4803 (version "5.0.3")
4804 (source
4805 (origin
4806 (method url-fetch)
4807 (uri (string-append
4808 "mirror://xorg/individual/lib/libXfixes-"
4809 version
4810 ".tar.bz2"))
4811 (sha256
4812 (base32
4813 "1miana3y4hwdqdparsccmygqr3ic3hs5jrqfzp70hvi2zwxd676y"))))
4814 (build-system gnu-build-system)
4815 (propagated-inputs
4816 `(("fixesproto" ,fixesproto)))
4817 (inputs
4818 `(("xproto" ,xproto)
4819 ("libx11" ,libx11)))
4820 (native-inputs
4821 `(("pkg-config" ,pkg-config)))
4822 (home-page "https://www.x.org/wiki/")
4823 (synopsis "Xorg Fixes Extension library")
4824 (description "Library for the XFixes Extension to the X11 protocol.")
4825 (license license:x11)))
4826
4827 (define-public libxfont
4828 (package
4829 (name "libxfont")
4830 (version "1.5.2")
4831 (source
4832 (origin
4833 (method url-fetch)
4834 (uri (string-append
4835 "mirror://xorg/individual/lib/libXfont-"
4836 version
4837 ".tar.bz2"))
4838 (sha256
4839 (base32
4840 "0w8d07bkmjiarkx09579bl8zsq903mn8javc7qpi0ix4ink5x502"))))
4841 (build-system gnu-build-system)
4842 (propagated-inputs
4843 `(("fontsproto" ,fontsproto)
4844 ("freetype" ,freetype)
4845 ("libfontenc" ,libfontenc)
4846 ("xproto" ,xproto)))
4847 (inputs
4848 `(("zlib" ,zlib)
4849 ("xtrans" ,xtrans)))
4850 (native-inputs
4851 `(("pkg-config" ,pkg-config)))
4852 (home-page "https://www.x.org/wiki/")
4853 (synopsis "Xorg Font handling library")
4854 (description
4855 "libXfont provides the core of the legacy X11 font system, handling the
4856 index files (fonts.dir, fonts.alias, fonts.scale), the various font file
4857 formats, and rasterizing them. It is used by the X servers, the X Font
4858 Server (xfs), and some font utilities (bdftopcf for instance), but should
4859 not be used by normal X11 clients. X11 clients access fonts via either the
4860 new API's in libXft, or the legacy API's in libX11.")
4861 (license license:x11)))
4862
4863 (define-public libxfont2
4864 (package
4865 (inherit libxfont)
4866 (version "2.0.1")
4867 (source (origin
4868 (method url-fetch)
4869 (uri (string-append "mirror://xorg/individual/lib/libXfont2-"
4870 version ".tar.bz2"))
4871 (sha256
4872 (base32
4873 "0znvwk36nhmyqpmhbm9mzisgixp1mp5qkfald8x1n5yxbm3vpyz9"))))))
4874
4875 (define-public libxi
4876 (package
4877 (name "libxi")
4878 (version "1.7.9")
4879 (source
4880 (origin
4881 (method url-fetch)
4882 (uri (string-append
4883 "mirror://xorg/individual/lib/libXi-"
4884 version
4885 ".tar.bz2"))
4886 (sha256
4887 (base32
4888 "0idg1wc01hndvaa820fvfs7phvd1ymf0lldmq6386i7rhkzvirn2"))))
4889 (build-system gnu-build-system)
4890 (propagated-inputs
4891 `(("inputproto" ,inputproto)
4892 ("libx11" ,libx11)
4893 ("libxext" ,libxext)
4894 ("libxfixes" ,libxfixes)))
4895 (inputs
4896 `(("xproto" ,xproto)))
4897 (native-inputs
4898 `(("pkg-config" ,pkg-config)))
4899 (home-page "https://www.x.org/wiki/")
4900 (synopsis "Xorg Input Extension library")
4901 (description "Library for the XInput Extension to the X11 protocol.")
4902 (license license:x11)))
4903
4904 (define-public libxrandr
4905 (package
4906 (name "libxrandr")
4907 (version "1.5.1")
4908 (source
4909 (origin
4910 (method url-fetch)
4911 (uri (string-append
4912 "mirror://xorg/individual/lib/libXrandr-"
4913 version
4914 ".tar.bz2"))
4915 (sha256
4916 (base32
4917 "06pmphx8lp3iywqnh88fvbfb0d8xgkx0qpvan49akpja1vxfgy8z"))))
4918 (build-system gnu-build-system)
4919 (propagated-inputs
4920 ;; In accordance with xrandr.pc.
4921 `(("libx11" ,libx11)
4922 ("libxext" ,libxext)
4923 ("libxrender" ,libxrender)
4924 ("randrproto" ,randrproto)
4925 ("xproto" ,xproto)))
4926 (native-inputs
4927 `(("pkg-config" ,pkg-config)))
4928 (home-page "https://www.x.org/wiki/")
4929 (synopsis "Xorg Resize and Rotate Extension library")
4930 (description
4931 "Library for the Resize and Rotate Extension to the X11 protocol.")
4932 (license license:x11)))
4933
4934 (define-public libxvmc
4935 (package
4936 (name "libxvmc")
4937 (version "1.0.10")
4938 (source
4939 (origin
4940 (method url-fetch)
4941 (uri (string-append
4942 "mirror://xorg/individual/lib/libXvMC-"
4943 version
4944 ".tar.bz2"))
4945 (sha256
4946 (base32
4947 "0bpffxr5dal90a8miv2w0rif61byqxq2f5angj4z1bnznmws00g5"))))
4948 (build-system gnu-build-system)
4949 (propagated-inputs
4950 `(("libxv" ,libxv)))
4951 (inputs
4952 `(("xproto" ,xproto)
4953 ("libxext" ,libxext)
4954 ("libx11" ,libx11)))
4955 (native-inputs
4956 `(("pkg-config" ,pkg-config)))
4957 (home-page "https://www.x.org/wiki/")
4958 (synopsis "Xorg XvMC library")
4959 (description "Xorg XvMC library.")
4960 (license license:x11)))
4961
4962 (define-public libxxf86vm
4963 (package
4964 (name "libxxf86vm")
4965 (version "1.1.4")
4966 (source
4967 (origin
4968 (method url-fetch)
4969 (uri (string-append
4970 "mirror://xorg/individual/lib/libXxf86vm-"
4971 version
4972 ".tar.bz2"))
4973 (sha256
4974 (base32
4975 "0mydhlyn72i7brjwypsqrpkls3nm6vxw0li8b2nw0caz7kwjgvmg"))))
4976 (build-system gnu-build-system)
4977 (propagated-inputs
4978 `(("libxext" ,libxext)
4979 ("xf86vidmodeproto" ,xf86vidmodeproto)))
4980 (inputs
4981 `(("libx11" ,libx11)))
4982 (native-inputs
4983 `(("pkg-config" ,pkg-config)))
4984 (home-page "https://www.x.org/wiki/")
4985 (synopsis "Xorg XF86 Video Mode Extension library")
4986 (description
4987 "Library for the XFree86 Video Mode Extension Extension to the X11
4988 protocol.")
4989 (license license:x11)))
4990
4991
4992 ;; packages of height 3 in the propagated-inputs tree
4993
4994 (define-public libxcb
4995 (package
4996 (name "libxcb")
4997 (version "1.12")
4998 (source
4999 (origin
5000 (method url-fetch)
5001 (uri (string-append "https://xcb.freedesktop.org/dist/"
5002 name "-" version ".tar.bz2"))
5003 (sha256
5004 (base32
5005 "0nvv0la91cf8p5qqlb3r5xnmg1jn2wphn4fb5jfbr6byqsvv3psa"))
5006 (patches
5007 (search-patches "libxcb-python-3.5-compat.patch"))))
5008 (build-system gnu-build-system)
5009 (propagated-inputs
5010 `(("libpthread-stubs" ,libpthread-stubs)
5011 ("libxau" ,libxau)
5012 ("libxdmcp" ,libxdmcp)))
5013 (inputs
5014 `(("xcb-proto" ,xcb-proto)
5015 ("libxslt" ,libxslt)))
5016 (native-inputs
5017 `(("pkg-config" ,pkg-config)
5018 ("python" ,python-minimal-wrapper)))
5019 (arguments
5020 `(#:configure-flags '("--enable-xkb")))
5021 (home-page "https://xcb.freedesktop.org/")
5022 (synopsis "The X C Binding (XCB) library")
5023 (description
5024 "libxcb provides an interface to the X Window System protocol,
5025 which replaces the current Xlib interface. It has several advantages
5026 over Xlib, including:
5027
5028 - size: small, simple library, and lower memory footprint;
5029
5030 - latency hiding: batch several requests and wait for the replies later;
5031
5032 - direct protocol access: interface and protocol correspond exactly;
5033
5034 - proven thread support: transparently access XCB from multiple threads;
5035
5036 - easy extension implementation: interfaces auto-generated from XML-XCB.")
5037 (license license:x11)))
5038
5039
5040 (define-public xorg-server
5041 (package
5042 (name "xorg-server")
5043 (version "1.19.3")
5044 (source
5045 (origin
5046 (method url-fetch)
5047 (uri (string-append
5048 "mirror://xorg/individual/xserver/"
5049 name "-" version ".tar.bz2"))
5050 (sha256
5051 (base32
5052 "162s1v901djr57gxmmk4airk8hiwcz79dqyz72972x1lw1k82yk7"))
5053 (patches
5054 (search-patches "xorg-server-CVE-2017-10971.patch"
5055 "xorg-server-CVE-2017-10972.patch"))))
5056 (build-system gnu-build-system)
5057 (propagated-inputs
5058 `(("dri2proto" ,dri2proto)
5059 ("dri3proto" ,dri3proto)
5060 ("fontsproto" ,fontsproto)
5061 ("inputproto" ,inputproto)
5062 ("kbproto" ,kbproto)
5063 ("libpciaccess" ,libpciaccess)
5064 ("mesa" ,mesa)
5065 ("pixman" ,pixman)
5066 ("presentproto" ,presentproto)
5067 ("randrproto" ,randrproto)
5068 ("renderproto" ,renderproto)
5069 ("resourceproto" ,resourceproto)
5070 ("scrnsaverproto" ,scrnsaverproto)
5071 ("videoproto" ,videoproto)
5072 ("xextproto" ,xextproto)
5073 ("xineramaproto" ,xineramaproto)
5074 ("xf86driproto" ,xf86driproto)
5075 ("xproto" ,xproto)))
5076 (inputs
5077 `(("bigreqsproto" ,bigreqsproto)
5078 ("compositeproto" ,compositeproto)
5079 ("damageproto" ,damageproto)
5080 ("udev" ,eudev)
5081 ("dbus" ,dbus)
5082 ("dmxproto" ,dmxproto)
5083 ("libdmx" ,libdmx)
5084 ("libepoxy" ,libepoxy)
5085 ("libgcrypt" ,libgcrypt)
5086 ("libxau" ,libxau)
5087 ("libxaw" ,libxaw)
5088 ("libxdmcp" ,libxdmcp)
5089 ("libxfixes" ,libxfixes)
5090 ("libxfont2" ,libxfont2)
5091 ("libxkbfile" ,libxkbfile)
5092 ("libxrender" ,libxrender)
5093 ("libxres" ,libxres)
5094 ("libxshmfence" ,libxshmfence)
5095 ("libxt" ,libxt)
5096 ("libxv" ,libxv)
5097 ("recordproto" ,recordproto)
5098 ("xcmiscproto" ,xcmiscproto)
5099 ("xf86bigfontproto" ,xf86bigfontproto)
5100 ("xf86dgaproto" ,xf86dgaproto)
5101 ("xf86vidmodeproto" ,xf86vidmodeproto)
5102 ("xkbcomp" ,xkbcomp)
5103 ("xkeyboard-config" ,xkeyboard-config)
5104 ("xtrans" ,xtrans)
5105 ("zlib" ,zlib)
5106 ;; Inputs for Xephyr
5107 ("xcb-util" ,xcb-util)
5108 ("xcb-util-image" ,xcb-util-image)
5109 ("xcb-util-keysyms" ,xcb-util-keysyms)
5110 ("xcb-util-renderutil" ,xcb-util-renderutil)
5111 ("xcb-util-wm" ,xcb-util-wm)))
5112 (native-inputs
5113 `(("python" ,python-minimal-wrapper)
5114 ("pkg-config" ,pkg-config)))
5115 (arguments
5116 `(#:parallel-tests? #f
5117 #:configure-flags
5118 (list (string-append "--with-xkb-path="
5119 (assoc-ref %build-inputs "xkeyboard-config")
5120 "/share/X11/xkb")
5121 (string-append "--with-xkb-output="
5122 "/tmp") ; FIXME: This is a bit doubtful; where should
5123 ; the compiled keyboard maps go?
5124 (string-append "--with-xkb-bin-directory="
5125 (assoc-ref %build-inputs "xkbcomp")
5126 "/bin")
5127 ;; By default, it ends up with invalid '${prefix}/...', causes:
5128 ;; _FontTransOpen: Unable to Parse address ${prefix}/share/...
5129 ;; It's not used anyway, so set it to empty.
5130 "--with-default-font-path="
5131
5132
5133 ;; For the log file, etc.
5134 "--localstatedir=/var"
5135 ;; For sddm
5136 "--enable-kdrive"
5137 "--enable-xephyr")
5138
5139 #:phases
5140 (modify-phases %standard-phases
5141 (add-before
5142 'configure 'pre-configure
5143 (lambda _
5144 (substitute* (find-files "." "\\.c$")
5145 (("/bin/sh") (which "sh")))
5146
5147 ;; Don't try to 'mkdir /var'.
5148 (substitute* "hw/xfree86/Makefile.in"
5149 (("\\$\\(MKDIR_P\\).*logdir.*")
5150 "true\n"))
5151 #t)))))
5152 (home-page "https://www.x.org/wiki/")
5153 (synopsis "Xorg implementation of the X Window System")
5154 (description
5155 "This package provides the Xorg X server itself.
5156 The X server accepts requests from client programs to create windows, which
5157 are (normally rectangular) 'virtual screens' that the client program can
5158 draw into.
5159
5160 Windows are then composed on the actual screen by the X server (or by a
5161 separate composite manager) as directed by the window manager, which usually
5162 communicates with the user via graphical controls such as buttons and
5163 draggable titlebars and borders.")
5164 (license license:x11)))
5165
5166 ;; This package is intended to be used when building GTK+.
5167 ;; Note: It's currently marked as "hidden" to avoid having two non-eq?
5168 ;; packages with the same name and version.
5169 (define-public xorg-server-1.19.3
5170 (hidden-package
5171 (package
5172 (inherit xorg-server)
5173 (name "xorg-server")
5174 (version "1.19.3")
5175 (source
5176 (origin
5177 (method url-fetch)
5178 (uri (string-append
5179 "mirror://xorg/individual/xserver/"
5180 name "-" version ".tar.bz2"))
5181 (sha256
5182 (base32
5183 "162s1v901djr57gxmmk4airk8hiwcz79dqyz72972x1lw1k82yk7")))))))
5184
5185 (define-public xorg-server-xwayland
5186 (package
5187 (inherit xorg-server)
5188 (name "xorg-server-xwayland")
5189 (inputs
5190 `(("wayland" ,wayland)
5191 ("wayland-protocols" ,wayland-protocols)
5192 ,@(package-inputs xorg-server)))
5193 (arguments
5194 (substitute-keyword-arguments (package-arguments xorg-server)
5195 ((#:configure-flags flags)
5196 `(cons* "--enable-xwayland" "--disable-xorg"
5197 "--disable-docs" "--disable-devel-docs"
5198 "--disable-xvfb" "--disable-xnest"
5199 "--disable-xquartz" "--disable-xwin"
5200 ,flags))))
5201 (synopsis "Xorg server with wayland backend")))
5202
5203
5204 ;; packages of height 4 in the propagated-inputs tree
5205
5206 (define-public libx11
5207 (package
5208 (name "libx11")
5209 (version "1.6.5")
5210 (source
5211 (origin
5212 (method url-fetch)
5213 (uri (string-append
5214 "mirror://xorg/individual/lib/libX11-"
5215 version
5216 ".tar.bz2"))
5217 (sha256
5218 (base32
5219 "0pa3cfp6h9rl2vxmkph65250gfqyki0ccqyaan6bl9d25gdr0f2d"))))
5220 (build-system gnu-build-system)
5221 (outputs '("out"
5222 "doc")) ;8 MiB of man pages + XML
5223 (arguments
5224 '(#:configure-flags (list (string-append "--mandir="
5225 (assoc-ref %outputs "doc")
5226 "/share/man"))))
5227 (propagated-inputs
5228 `(("kbproto" ,kbproto)
5229 ("libxcb" ,libxcb)))
5230 (inputs
5231 `(("inputproto" ,inputproto)
5232 ("xextproto" ,xextproto)
5233 ("xtrans" ,xtrans)))
5234 (native-inputs
5235 `(("pkg-config" ,pkg-config)))
5236 (home-page "https://www.x.org/wiki/")
5237 (synopsis "Xorg Core X11 protocol client library")
5238 (description "Xorg Core X11 protocol client library.")
5239 (license license:x11)))
5240
5241 ;; packages of height 5 in the propagated-inputs tree
5242
5243 (define-public libxcursor
5244 (package
5245 (name "libxcursor")
5246 (version "1.1.14")
5247 (source
5248 (origin
5249 (method url-fetch)
5250 (uri (string-append
5251 "mirror://xorg/individual/lib/libXcursor-"
5252 version
5253 ".tar.bz2"))
5254 (sha256
5255 (base32
5256 "1prkdicl5y5yx32h1azh6gjfbijvjp415javv8dsakd13jrarilv"))))
5257 (build-system gnu-build-system)
5258 (propagated-inputs
5259 `(("libx11" ,libx11)
5260 ("libxrender" ,libxrender)
5261 ("libxfixes" ,libxfixes)
5262 ("xproto" ,xproto)))
5263 (native-inputs
5264 `(("pkg-config" ,pkg-config)))
5265 (home-page "https://www.x.org/wiki/")
5266 (synopsis "Xorg Cursor management library")
5267 (description "Xorg Cursor management library.")
5268 (license license:x11)))
5269
5270
5271 (define-public libxt
5272 (package
5273 (name "libxt")
5274 (version "1.1.5")
5275 (source
5276 (origin
5277 (method url-fetch)
5278 (uri (string-append
5279 "mirror://xorg/individual/lib/libXt-"
5280 version
5281 ".tar.bz2"))
5282 (sha256
5283 (base32
5284 "06lz6i7rbrp19kgikpaz4c97fw7n31k2h2aiikczs482g2zbdvj6"))
5285 (patches (search-patches "libxt-guix-search-paths.patch"))))
5286 (build-system gnu-build-system)
5287 (outputs '("out"
5288 "doc")) ;2 MiB of man pages + XML
5289 (arguments
5290 '(#:configure-flags (list (string-append "--mandir="
5291 (assoc-ref %outputs "doc")
5292 "/share/man"))))
5293 (propagated-inputs
5294 `(("libx11" ,libx11)
5295 ("libice" ,libice)
5296 ("libsm" ,libsm)))
5297 (inputs
5298 `(("libx11" ,libx11)))
5299 (native-inputs
5300 `(("pkg-config" ,pkg-config)))
5301 (home-page "https://www.x.org/wiki/")
5302 (synopsis "Xorg XToolkit Intrinsics library")
5303 (description "Xorg XToolkit Intrinsics library.")
5304 (license license:x11)))
5305
5306
5307 (define-public libxaw
5308 (package
5309 (name "libxaw")
5310 (version "1.0.13")
5311 (source
5312 (origin
5313 (method url-fetch)
5314 (uri (string-append
5315 "mirror://xorg/individual/lib/libXaw-"
5316 version
5317 ".tar.bz2"))
5318 (sha256
5319 (base32
5320 "1kdhxplwrn43d9jp3v54llp05kwx210lrsdvqb6944jp29rhdy4f"))))
5321 (build-system gnu-build-system)
5322 (propagated-inputs
5323 `(("libxext" ,libxext)
5324 ("libxmu" ,libxmu)
5325 ("libxpm" ,libxpm)
5326 ("libxt" ,libxt)))
5327 (inputs
5328 `(("xproto" ,xproto)))
5329 (native-inputs
5330 `(("pkg-config" ,pkg-config)))
5331 (home-page "https://www.x.org/wiki/")
5332 (synopsis "Xorg Xaw library")
5333 (description
5334 "Xaw is the X Athena Widget Set based on the X Toolkit
5335 Intrinsics (Xt) Library.")
5336 (license license:x11)))
5337
5338 (define-public twm
5339 (package
5340 (name "twm")
5341 (version "1.0.9")
5342 (source
5343 (origin
5344 (method url-fetch)
5345 (uri (string-append
5346 "mirror://xorg/individual/app/" name "-"
5347 version
5348 ".tar.gz"))
5349 (sha256
5350 (base32
5351 "1s1r00x8add3f27xjqxg6q7mwplwrb72gakbh4y6j052as25wchw"))))
5352 (build-system gnu-build-system)
5353 (inputs
5354 `(("libxt" ,libxt)
5355 ("libxmu" ,libxmu)
5356 ("libxext" ,libxext)
5357 ("xproto" ,xproto)))
5358 (native-inputs
5359 `(("bison" ,bison)
5360 ("pkg-config" ,pkg-config)))
5361 (home-page "https://www.x.org/wiki/")
5362 (synopsis "Tab Window Manager for the X Window System")
5363 (description "Twm is a window manager for the X Window System.
5364 It provides titlebars, shaped windows, several forms of icon management,
5365 user-defined macro functions, click-to-type and pointer-driven
5366 keyboard focus, and user-specified key and pointer button bindings.")
5367 (license license:x11)))
5368
5369 (define-public xcb-util
5370 (package
5371 (name "xcb-util")
5372 (version "0.4.0")
5373 (source (origin
5374 (method url-fetch)
5375 (uri (string-append "mirror://xorg/individual/xcb/"
5376 name "-" version ".tar.bz2"))
5377 (sha256
5378 (base32
5379 "1sahmrgbpyki4bb72hxym0zvxwnycmswsxiisgqlln9vrdlr9r26"))))
5380 (build-system gnu-build-system)
5381 (propagated-inputs
5382 `(("libxcb" ,libxcb)))
5383 (native-inputs
5384 `(("pkg-config" ,pkg-config)))
5385 (home-page "https://cgit.freedesktop.org/xcb/util/")
5386 (synopsis "Core XCB utility functions")
5387 (description
5388 "The XCB util module provides a number of libraries which sit on
5389 top of libxcb, the core X protocol library, and some of the extension
5390 libraries. These experimental libraries provide convenience functions
5391 and interfaces which make the raw X protocol more usable. Some of the
5392 libraries also provide client-side code which is not strictly part of
5393 the X protocol but which has traditionally been provided by Xlib.
5394
5395 The XCB util module provides the following libraries:
5396
5397 - aux: Convenient access to connection setup and some core requests.
5398
5399 - atom: Standard core X atom constants and atom caching.
5400
5401 - event: Some utilities that have little to do with events any more.")
5402 (license license:x11)))
5403
5404
5405 (define-public xcb-util-cursor
5406 (package
5407 (name "xcb-util-cursor")
5408 (version "0.1.3")
5409 (source (origin
5410 (method url-fetch)
5411 (uri (string-append "https://xcb.freedesktop.org/dist/"
5412 "xcb-util-cursor-" version ".tar.bz2"))
5413 (sha256
5414 (base32
5415 "0krr4rcw6r42cncinzvzzdqnmxk3nrgpnadyg2h8k9x10q3hm885"))))
5416 (build-system gnu-build-system)
5417 (native-inputs
5418 `(("m4" ,m4)
5419 ("pkg-config" ,pkg-config)))
5420 (inputs
5421 `(("libxcb" ,libxcb)))
5422 (propagated-inputs
5423 `(("xcb-util-renderutil" ,xcb-util-renderutil)
5424 ("xcb-util-image" ,xcb-util-image)))
5425 (home-page "https://cgit.freedesktop.org/xcb/util-cursor/")
5426 (synopsis "Port of libxcursor")
5427 (description "XCB-util-cursor is a port of libxcursor.")
5428 (license
5429 ; expat license with added clause regarding advertising
5430 (license:non-copyleft
5431 "file://COPYING"
5432 "See COPYING in the distribution."))))
5433
5434
5435 (define-public xcb-util-image
5436 (package
5437 (name "xcb-util-image")
5438 (version "0.4.0")
5439 (source (origin
5440 (method url-fetch)
5441 (uri (string-append "mirror://xorg/individual/xcb/"
5442 name "-" version ".tar.bz2"))
5443 (sha256
5444 (base32
5445 "1z1gxacg7q4cw6jrd26gvi5y04npsyavblcdad1xccc8swvnmf9d"))))
5446 (build-system gnu-build-system)
5447 (propagated-inputs
5448 `(("libxcb" ,libxcb)))
5449 (inputs
5450 `(("xcb-util" ,xcb-util)))
5451 (native-inputs
5452 `(("pkg-config" ,pkg-config)))
5453 (home-page "https://cgit.freedesktop.org/xcb/util-image/")
5454 (synopsis "XCB port of Xlib's XImage and XShmImage")
5455 (description
5456 "The XCB util module provides a number of libraries which sit on
5457 top of libxcb, the core X protocol library, and some of the extension
5458 libraries. These experimental libraries provide convenience functions
5459 and interfaces which make the raw X protocol more usable. Some of the
5460 libraries also provide client-side code which is not strictly part of
5461 the X protocol but which has traditionally been provided by Xlib.
5462
5463 The XCB util-image module provides the following library:
5464
5465 - image: Port of Xlib's XImage and XShmImage functions.")
5466 (license license:x11)))
5467
5468
5469 (define-public xcb-util-keysyms
5470 (package
5471 (name "xcb-util-keysyms")
5472 (version "0.4.0")
5473 (source (origin
5474 (method url-fetch)
5475 (uri (string-append "mirror://xorg/individual/xcb/"
5476 name "-" version ".tar.bz2"))
5477 (sha256
5478 (base32
5479 "1nbd45pzc1wm6v5drr5338j4nicbgxa5hcakvsvm5pnyy47lky0f"))))
5480 (build-system gnu-build-system)
5481 (propagated-inputs
5482 `(("libxcb" ,libxcb)))
5483 (native-inputs
5484 `(("pkg-config" ,pkg-config)))
5485 (home-page "https://cgit.freedesktop.org/xcb/util-keysyms/")
5486 (synopsis "Standard X constants and conversion to/from keycodes")
5487 (description
5488 "The XCB util module provides a number of libraries which sit on
5489 top of libxcb, the core X protocol library, and some of the extension
5490 libraries. These experimental libraries provide convenience functions
5491 and interfaces which make the raw X protocol more usable. Some of the
5492 libraries also provide client-side code which is not strictly part of
5493 the X protocol but which has traditionally been provided by Xlib.
5494
5495 The XCB util-keysyms module provides the following library:
5496
5497 - keysyms: Standard X key constants and conversion to/from keycodes.")
5498 (license license:x11)))
5499
5500
5501 (define-public xcb-util-renderutil
5502 (package
5503 (name "xcb-util-renderutil")
5504 (version "0.3.9")
5505 (source (origin
5506 (method url-fetch)
5507 (uri (string-append "mirror://xorg/individual/xcb/"
5508 name "-" version ".tar.bz2"))
5509 (sha256
5510 (base32
5511 "0nza1csdvvxbmk8vgv8vpmq7q8h05xrw3cfx9lwxd1hjzd47xsf6"))))
5512 (build-system gnu-build-system)
5513 (propagated-inputs
5514 `(("libxcb" ,libxcb)))
5515 (native-inputs
5516 `(("pkg-config" ,pkg-config)))
5517 (home-page "https://cgit.freedesktop.org/xcb/util-renderutil/")
5518 (synopsis "Convenience functions for the Render extension")
5519 (description
5520 "The XCB util module provides a number of libraries which sit on
5521 top of libxcb, the core X protocol library, and some of the extension
5522 libraries. These experimental libraries provide convenience functions
5523 and interfaces which make the raw X protocol more usable. Some of the
5524 libraries also provide client-side code which is not strictly part of
5525 the X protocol but which has traditionally been provided by Xlib.
5526
5527 The XCB util-renderutil module provides the following library:
5528
5529 - renderutil: Convenience functions for the Render extension.")
5530 (license license:x11)))
5531
5532
5533 (define-public xcb-util-wm
5534 (package
5535 (name "xcb-util-wm")
5536 (version "0.4.1")
5537 (source (origin
5538 (method url-fetch)
5539 (uri (string-append "mirror://xorg/individual/xcb/"
5540 name "-" version ".tar.bz2"))
5541 (sha256
5542 (base32
5543 "0gra7hfyxajic4mjd63cpqvd20si53j1q3rbdlkqkahfciwq3gr8"))))
5544 (build-system gnu-build-system)
5545 (propagated-inputs
5546 `(("libxcb" ,libxcb)))
5547 (native-inputs
5548 `(("m4" ,m4)
5549 ("pkg-config" ,pkg-config)))
5550 (home-page "https://cgit.freedesktop.org/xcb/util-wm/")
5551 (synopsis "Client and window-manager helpers for ICCCM and EWMH")
5552 (description
5553 "The XCB util modules provides a number of libraries which sit on
5554 top of libxcb, the core X protocol library, and some of the extension
5555 libraries. These experimental libraries provide convenience functions
5556 and interfaces which make the raw X protocol more usable. Some of the
5557 libraries also provide client-side code which is not strictly part of
5558 the X protocol but which has traditionally been provided by Xlib.
5559
5560 The XCB util-wm module provides the following libraries:
5561
5562 - ewmh: Both client and window-manager helpers for EWMH.
5563
5564 - icccm: Both client and window-manager helpers for ICCCM.")
5565 (license license:x11)))
5566
5567 (define-public xinit
5568 (package
5569 (name "xinit")
5570 (version "1.3.4")
5571 (source (origin
5572 (method url-fetch)
5573 (uri (string-append "mirror://xorg/individual/app/xinit-"
5574 version ".tar.bz2"))
5575 (sha256
5576 (base32
5577 "1cq2g469mb2cfgr8k57960yrn90bl33vfqri4pdh2zm0jxrqvn3m"))))
5578 (build-system gnu-build-system)
5579 (inputs
5580 `(("xproto" ,xproto)
5581 ("libx11" ,libx11)))
5582 (native-inputs
5583 `(("pkg-config" ,pkg-config)))
5584 (propagated-inputs
5585 `(("xauth" ,xauth)))
5586 (home-page "http://x.org")
5587 (synopsis "Commands to start the X Window server")
5588 (description
5589 "The xinit program is used to start the X Window System server and a
5590 first client program on systems that are not using a display manager such as
5591 xdm. This package also provides the 'startx' command, which provides a
5592 user-friendly mechanism to start the X server.")
5593 (license license:x11)))
5594
5595 ;; package outside the x.org system proper of height 5
5596
5597 (define-public libxaw3d
5598 (package
5599 (name "libxaw3d")
5600 (version "1.6.2")
5601 (source
5602 (origin
5603 (method url-fetch)
5604 (uri (string-append
5605 "mirror://xorg/individual/lib/libXaw3d-"
5606 version
5607 ".tar.bz2"))
5608 (sha256
5609 (base32
5610 "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp"))))
5611 (build-system gnu-build-system)
5612 (propagated-inputs
5613 `(("libxext" ,libxext)
5614 ("libxmu" ,libxmu)
5615 ("libxt" ,libxt)))
5616 (inputs
5617 `(("libx11" ,libx11)))
5618 (native-inputs
5619 `(("pkg-config" ,pkg-config)))
5620 (home-page "https://www.x.org/wiki/")
5621 (synopsis "Xorg Xaw3d library")
5622 (description
5623 "Xaw is the X 3D Athena Widget Set based on the X Toolkit
5624 Intrinsics (Xt) Library.")
5625 (license license:x11)))
5626
5627 (define-public xmag
5628 (package
5629 (name "xmag")
5630 (version "1.0.6")
5631 (source
5632 (origin
5633 (method url-fetch)
5634 (uri (string-append
5635 "mirror://xorg/individual/app/" name "-"
5636 version
5637 ".tar.gz"))
5638 (sha256
5639 (base32
5640 "19bsg5ykal458d52v0rvdx49v54vwxwqg8q36fdcsv9p2j8yri87"))))
5641 (build-system gnu-build-system)
5642 (arguments
5643 `(#:configure-flags
5644 (list (string-append "--with-appdefaultdir="
5645 %output ,%app-defaults-dir))))
5646 (inputs
5647 `(("libxaw" ,libxaw)))
5648 (native-inputs
5649 `(("pkg-config" ,pkg-config)))
5650 (home-page "https://www.x.org/wiki/")
5651 (synopsis "Display or capture a magnified part of a X11 screen")
5652 (description "Xmag displays and captures a magnified snapshot of a portion
5653 of an X11 screen.")
5654 (license license:x11)))
5655
5656 (define-public xmessage
5657 (package
5658 (name "xmessage")
5659 (version "1.0.4")
5660 (source
5661 (origin
5662 (method url-fetch)
5663 (uri (string-append
5664 "mirror://xorg/individual/app/" name "-"
5665 version
5666 ".tar.gz"))
5667 (sha256
5668 (base32
5669 "1jmcac1xbwplbxfl75sr6w3zqhx1khpdzlqippjsr31cjp1rjc48"))))
5670 (build-system gnu-build-system)
5671 (arguments
5672 `(#:configure-flags
5673 (list (string-append "--with-appdefaultdir="
5674 %output ,%app-defaults-dir))))
5675 (inputs
5676 `(("libxaw" ,libxaw)))
5677 (native-inputs
5678 `(("pkg-config" ,pkg-config)))
5679 (home-page "https://www.x.org/wiki/")
5680 (synopsis "Displays a message or query in a window")
5681 (description
5682 "Xmessage displays a message or query in a window. The user can click
5683 on a button to dismiss it or can select one of several buttons
5684 to answer a question. Xmessage can also exit after a specified time.")
5685 (license license:x11)))
5686
5687 (define-public xterm
5688 (package
5689 (name "xterm")
5690 (version "330")
5691 (source (origin
5692 (method url-fetch)
5693 (uri (string-append "ftp://ftp.invisible-island.net/xterm/"
5694 "xterm-" version ".tgz"))
5695 (sha256
5696 (base32
5697 "1psnfmqd23v9gxj8a98nzrgvymrk0p1whwqi92gy15bbkzrgkvks"))))
5698 (build-system gnu-build-system)
5699 (arguments
5700 '(#:configure-flags '("--enable-wide-chars" "--enable-256-color"
5701 "--enable-load-vt-fonts" "--enable-i18n"
5702 "--enable-doublechars" "--enable-luit"
5703 "--enable-mini-luit")
5704 #:tests? #f))
5705 (native-inputs
5706 `(("pkg-config" ,pkg-config)))
5707 (inputs
5708 `(("luit" ,luit)
5709 ("libXft" ,libxft)
5710 ("fontconfig" ,fontconfig)
5711 ("freetype" ,freetype)
5712 ("ncurses" ,ncurses)
5713 ("libICE" ,libice)
5714 ("libSM" ,libsm)
5715 ("libX11" ,libx11)
5716 ("libXext" ,libxext)
5717 ("libXt" ,libxt)
5718 ("xproto" ,xproto)
5719 ("libXaw" ,libxaw)))
5720 (home-page "http://invisible-island.net/xterm")
5721 (synopsis "Terminal emulator for the X Window System")
5722 (description
5723 "The xterm program is a terminal emulator for the X Window System. It
5724 provides DEC VT102/VT220 (VTxxx) and Tektronix 4014 compatible terminals for
5725 programs that cannot use the window system directly.")
5726 (license license:x11)))
5727
5728 (define-public perl-x11-xcb
5729 (package
5730 (name "perl-x11-xcb")
5731 (version "0.16")
5732 (source (origin
5733 (method url-fetch)
5734 (uri (string-append
5735 "mirror://cpan/authors/id/M/MS/MSTPLBG/"
5736 "X11-XCB-" version ".tar.gz"))
5737 (sha256
5738 (base32
5739 "14mnvr1001py2z1n43l18yaw0plwvjg5pcsyc7k81sa0amw8ahzw"))))
5740 (build-system perl-build-system)
5741 (arguments
5742 '(;; Disable parallel build to prevent a race condition.
5743 #:parallel-build? #f
5744 #:phases
5745 (modify-phases %standard-phases
5746 (add-before 'build 'patch-Makefile
5747 (lambda* (#:key inputs #:allow-other-keys)
5748 (substitute* "Makefile"
5749 ;; XXX: Without this hack, attempts at using XCB.so fails with
5750 ;; an error such as "XCB.so: undefined symbol: xcb_xinerama_id"
5751 (("^LDDLFLAGS = ")
5752 (string-append "LDDLFLAGS = "
5753 "-lxcb -lxcb-util -lxcb-xinerama -lxcb-icccm ")))
5754 #t)))
5755 ;; Tests require a running X11 server.
5756 #:tests? #f))
5757 (native-inputs
5758 `(("perl-extutils-depends" ,perl-extutils-depends)
5759 ("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
5760 ("perl-test-deep" ,perl-test-deep)
5761 ("perl-test-exception" ,perl-test-exception)))
5762 (propagated-inputs
5763 `(("perl-data-dump" ,perl-data-dump)
5764 ("perl-mouse" ,perl-mouse)
5765 ("perl-mousex-nativetraits" ,perl-mousex-nativetraits)
5766 ("perl-try-tiny" ,perl-try-tiny)
5767 ("perl-xml-descent" ,perl-xml-descent)
5768 ("perl-xml-simple" ,perl-xml-simple)
5769 ("perl-xs-object-magic" ,perl-xs-object-magic)))
5770 (inputs
5771 `(("libxcb" ,libxcb)
5772 ("xcb-proto" ,xcb-proto)
5773 ("xcb-util" ,xcb-util)
5774 ("xcb-util-wm" ,xcb-util-wm)))
5775 (home-page "http://search.cpan.org/dist/X11-XCB")
5776 (synopsis "Perl bindings for libxcb")
5777 (description
5778 "These bindings wrap @code{libxcb} (a C library to speak with X11,
5779 in many cases better than @code{Xlib}), and provides an object oriented
5780 interface to its methods (using @code{Mouse}).")
5781 (license license:perl-license)))
5782
5783 (define-public perl-x11-protocol
5784 (package
5785 (name "perl-x11-protocol")
5786 (version "0.56")
5787 (source (origin
5788 (method url-fetch)
5789 (uri (string-append
5790 "mirror://cpan/authors/id/S/SM/SMCCAM/X11-Protocol-"
5791 version ".tar.gz"))
5792 (sha256
5793 (base32
5794 "1dq89bh6fqv7l5mbffqcismcljpq5f869bx7g8lg698zgindv5ny"))))
5795 (build-system perl-build-system)
5796 (arguments '(#:tests? #f)) ;tests require a running x server
5797 (synopsis "Raw interface to X Window System servers")
5798 (description
5799 "X11::Protocol is a client-side interface to the X11 Protocol, allowing
5800 perl programs to display windows and graphics on X11 servers.")
5801 (home-page
5802 (string-append "http://search.cpan.org/~smccam/X11-Protocol-" version))
5803 ;; From the package README: "you can redistribute and/or modify it under
5804 ;; the same terms as Perl itself. (As an exception, the file
5805 ;; Keysyms.pm,which is derived from a file in the standard X11
5806 ;; distribution, has another, less restrictive copying policy, as do some
5807 ;; of the extension modules in the directory Protocol/Ext: see those files
5808 ;; for details)."
5809 (license license:perl-license)))
5810
5811 (define-public xcompmgr
5812 (package
5813 (name "xcompmgr")
5814 (version "1.1.7")
5815 (source
5816 (origin
5817 ;; there's no current tarball
5818 (method git-fetch)
5819 (uri (git-reference
5820 (url "https://anongit.freedesktop.org/git/xorg/app/xcompmgr.git")
5821 (commit (string-append name "-" version))))
5822 (sha256
5823 (base32
5824 "04swkrm3gk689wrjc418bd3n25w8r20kg1xfbn5j8d7mx1r5gf16"))
5825 (file-name (string-append name "-" version))))
5826 (build-system gnu-build-system)
5827 (arguments
5828 `(#:phases (modify-phases %standard-phases
5829 (add-after 'unpack 'autogen
5830 (lambda _
5831 (setenv "NOCONFIGURE" "t")
5832 (zero? (system* "sh" "autogen.sh")))))))
5833 (native-inputs
5834 `(("pkg-config" ,pkg-config)
5835 ("autoconf" ,autoconf)
5836 ("automake" ,automake)))
5837 (inputs
5838 `(("libX11" ,libx11)
5839 ("libXext" ,libxext)
5840 ("libXcomposite" ,libxcomposite)
5841 ("libXfixes" ,libxfixes)
5842 ("libXdamage" ,libxdamage)
5843 ("libXrender" ,libxrender)))
5844 (synopsis "X Compositing manager using RENDER")
5845 (description "xcompmgr is a sample compositing manager for X servers
5846 supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE extensions. It enables
5847 basic eye-candy effects.")
5848 (home-page "https://cgit.freedesktop.org/xorg/app/xcompmgr/")
5849 (license (license:x11-style
5850 "https://cgit.freedesktop.org/xorg/app/xcompmgr/tree/COPYING"))))
5851
5852 (define-public xpra
5853 (package
5854 (name "xpra")
5855 (version "2.0.3")
5856 (source
5857 (origin
5858 (method url-fetch)
5859 (uri (string-append "https://www.xpra.org/src/xpra-"
5860 version ".tar.xz"))
5861 (sha256
5862 (base32
5863 "1f2mkbgjslfivh5xq5xbab1cn6jjyc1d104f692f3s0dnhq7dafa"))))
5864 (build-system python-build-system)
5865 (inputs `(("ffmpeg", ffmpeg)
5866 ("flac", flac)
5867 ("gtk+-2" ,gtk+-2) ;; no full GTK3 support yet
5868 ("libjpeg", libjpeg)
5869 ("libpng", libpng)
5870 ("libvpx", libvpx)
5871 ("libx264", libx264)
5872 ("libxcomposite", libxcomposite)
5873 ("libxdamage", libxdamage)
5874 ("libxkbfile", libxkbfile)
5875 ("libxrandr", libxrandr)
5876 ("libxtst", libxtst)
5877 ("lzo", lzo)
5878 ("python2-cryptography", python2-cryptography)
5879 ("python2-dbus", python2-dbus)
5880 ("python2-lz4", python2-lz4)
5881 ("python2-lzo", python2-lzo)
5882 ("python2-numpy", python2-numpy)
5883 ("python2-pillow" ,python2-pillow)
5884 ("python2-pycairo", python2-pycairo)
5885 ("python2-pycrypto", python2-pycrypto)
5886 ("python2-pygobject", python2-pygobject)
5887 ("python2-pyopengl", python2-pyopengl)
5888 ("python2-pygtk", python2-pygtk)
5889 ("python2-rencode", python2-rencode)
5890 ("xorg-server", xorg-server)))
5891 (native-inputs `(("pkg-config" ,pkg-config)
5892 ("python2-cython", python2-cython)))
5893 (arguments
5894 `(#:python ,python-2 ;; no full Python 3 support yet
5895 #:configure-flags '("--with-tests"
5896 "--with-bundle_tests"
5897 "--without-strict")
5898 #:modules ((guix build python-build-system)
5899 (guix build utils))
5900
5901 #:phases
5902 (modify-phases %standard-phases
5903 (delete 'build)
5904 (delete 'check) ;; There's no test suite at the moment.
5905
5906 ;; Remove BUILD_CPU, BUILD_DATE, BUILD_TIME from build info to
5907 ;; prevent deterministic issues. Also correct some directories and
5908 ;; use the xvfb binary instead of xorg-server (which doesn't seem to
5909 ;; work).
5910 (add-before 'install 'remove-timestamps&set-file-names
5911 (lambda* (#:key inputs outputs #:allow-other-keys)
5912 (substitute* "add_build_info.py"
5913 ((".*\"BUILD_CPU\", get_cpuinfo.*") ""))
5914 (substitute* "add_build_info.py"
5915 ((".*\"BUILD_DATE\", datetime.*") ""))
5916 (substitute* "add_build_info.py"
5917 ((".*\"BUILD_TIME\", datetime.*") ""))
5918 (substitute* "setup.py"
5919 (("/etc/init.d/")
5920 (string-append (assoc-ref outputs "out")
5921 "/etc/init.d/")))
5922 (substitute* "setup.py"
5923 (("/usr/lib/")
5924 (string-append (assoc-ref outputs "out") "/lib/")))
5925 (substitute* "./etc/xpra/conf.d/55_server_x11.conf.in"
5926 (("xvfb = %.*")
5927 (string-append "xvfb = "
5928 (assoc-ref inputs "xorg-server")
5929 "/bin/Xvfb +extension Composite -nolisten tcp"
5930 " -noreset -auth $XAUTHORITY"
5931 " -screen 0 5760x2560x24+32")))
5932 #t)))))
5933 (home-page "https://www.xpra.org/")
5934 (synopsis "Remote access to individual applications or full desktops")
5935 (description "Xpra is a persistent remote display server and client for
5936 forwarding applications and desktop screens. It gives you remote access to
5937 individual applications or full desktops. On X11, it is also known as
5938 ``@command{screen} for X11'': it allows you to run programs, usually on a
5939 remote host, direct their display to your local machine, and then to
5940 disconnect from these programs and reconnect from the same or another machine,
5941 without losing any state. It can also be used to forward full desktops from
5942 X11 servers, Windows, or macOS.")
5943 (license license:gpl2+)))