summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2013-04-04 18:48:24 +0200
committerAndreas Enge <andreas@enge.fr>2013-04-04 18:49:28 +0200
commit6be960c7f7f8538024f5807dcd5b6a8a7562baf1 (patch)
tree05a6712b7e8aa0fe2b4314767dc0219e85ea695e
parent9be8d7c8cb1b1ee4d1f3ba7360320527199b4a0d (diff)
parent8dc5d0cf7e18ee423c73087570c6b50d215ae216 (diff)
downloadguix-patches-6be960c7f7f8538024f5807dcd5b6a8a7562baf1.tar
guix-patches-6be960c7f7f8538024f5807dcd5b6a8a7562baf1.tar.gz
Merge branch 'xorg' into core-updates
-rw-r--r--Makefile.am5
-rw-r--r--gnu/packages/fontutils.scm14
-rw-r--r--gnu/packages/lesstif.scm50
-rw-r--r--gnu/packages/patches/xpdf-constchar.patch15
-rw-r--r--gnu/packages/pdf.scm55
-rw-r--r--gnu/packages/texlive.scm4
-rw-r--r--gnu/packages/xml.scm71
-rw-r--r--gnu/packages/xorg.scm4872
-rw-r--r--guix/download.scm3
9 files changed, 5078 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am
index 89a8571019..053dc1e8c5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -108,6 +108,7 @@ MODULES = \
gnu/packages/irssi.scm \
gnu/packages/ld-wrapper.scm \
gnu/packages/less.scm \
+ gnu/packages/lesstif.scm \
gnu/packages/libapr.scm \
gnu/packages/libdaemon.scm \
gnu/packages/libevent.scm \
@@ -177,6 +178,7 @@ MODULES = \
gnu/packages/wget.scm \
gnu/packages/which.scm \
gnu/packages/xml.scm \
+ gnu/packages/xorg.scm \
gnu/packages/zile.scm \
gnu/packages/zip.scm \
gnu/system/vm.scm
@@ -235,7 +237,8 @@ dist_patch_DATA = \
gnu/packages/patches/tcsh-fix-autotest.patch \
gnu/packages/patches/teckit-cstdio.patch \
gnu/packages/patches/vpnc-script.patch \
- gnu/packages/patches/w3m-fix-compile.patch
+ gnu/packages/patches/w3m-fix-compile.patch \
+ gnu/packages/patches/xpdf-constchar.patch
bootstrapdir = $(guilemoduledir)/gnu/packages/bootstrap
bootstrap_x86_64_linuxdir = $(bootstrapdir)/x86_64-linux
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 551d4ac167..14f8250357 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -38,6 +38,20 @@
(sha256 (base32
"0gpcz6swir64kp0dk3rwgqqkmf48b90dqgczdmznjjryhrahx9r9"))))
(build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (alist-replace
+ 'install
+ (lambda* (#:key outputs #:allow-other-keys #:rest args)
+ (let ((install (assoc-ref %standard-phases 'install))
+ (include (string-append (assoc-ref outputs "out") "/include")))
+ (apply install args)
+ ;; Unravel one directory, since ft2build.h includes directly from
+ ;; freetype/, not freetype2/freetype; this is announced in the file
+ ;; to be changed in a future release.
+ (symlink (string-append include "/freetype2/freetype")
+ (string-append include "/freetype"))))
+ %standard-phases)))
(synopsis "Freetype, a library to render fonts")
(description
"Freetype is a library that can be used by applications to access the
diff --git a/gnu/packages/lesstif.scm b/gnu/packages/lesstif.scm
new file mode 100644
index 0000000000..d15549454f
--- /dev/null
+++ b/gnu/packages/lesstif.scm
@@ -0,0 +1,50 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages lesstif)
+ #:use-module ((guix licenses)
+ #:renamer (symbol-prefix-proc 'license:))
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages xorg))
+
+
+(define-public lesstif
+ (package
+ (name "lesstif")
+ (version "0.95.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://sourceforge/lesstif/lesstif/" version
+ "/lesstif-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("printproto" ,printproto)))
+ (inputs
+ `(("libxext" ,libxext)
+ ("libxt" ,libxt)))
+ (home-page "http://lesstif.sourceforge.net/")
+ (synopsis "Clone of the Motif toolkit for the X window system")
+ (description "Clone of the Motif toolkit for the X window system")
+ (license license:gpl2+))) ; some files are lgpl2.1+ or x11
diff --git a/gnu/packages/patches/xpdf-constchar.patch b/gnu/packages/patches/xpdf-constchar.patch
new file mode 100644
index 0000000000..95dbe73c71
--- /dev/null
+++ b/gnu/packages/patches/xpdf-constchar.patch
@@ -0,0 +1,15 @@
+This patch circumvents an error with 'const char *' to 'char *' conversion,
+see http://gnats.netbsd.org/45562 .
+
+diff -u a/xpdf/XPDFViewer.cc b/xpdf/XPDFViewer.cc
+--- a/xpdf/XPDFViewer.cc 2011-08-15 23:08:53.000000000 +0200
++++ b/xpdf/XPDFViewer.cc 2013-03-31 15:13:21.000000000 +0200
+@@ -1803,7 +1803,7 @@
+ menuPane = XmCreatePulldownMenu(toolBar, "zoomMenuPane", args, n);
+ for (i = 0; i < nZoomMenuItems; ++i) {
+ n = 0;
+- s = XmStringCreateLocalized(zoomMenuInfo[i].label);
++ s = XmStringCreateLocalized((char *) zoomMenuInfo[i].label);
+ XtSetArg(args[n], XmNlabelString, s); ++n;
+ XtSetArg(args[n], XmNuserData, (XtPointer)i); ++n;
+ sprintf(buf, "zoom%d", i);
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 5a9d513336..b2f1ade143 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -17,16 +17,21 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages pdf)
- #:use-module ((guix licenses) #:select (gpl2+))
+ #:use-module ((guix licenses)
+ #:renamer (symbol-prefix-proc 'license:))
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
#:use-module (gnu packages fontutils)
+ #:use-module (gnu packages ghostscript)
+ #:use-module (gnu packages lesstif)
#:use-module (gnu packages libjpeg)
+ #:use-module (gnu packages libpng)
#:use-module (gnu packages libtiff)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages xorg))
(define-public poppler
(package
@@ -40,17 +45,59 @@
"1rmrspavldlpqi6g76fijcmshy80m0kxd01nc1dmy4id3h4las44"))))
(build-system gnu-build-system)
;; FIXME: more dependencies could be added
+ ;; cairo output: no (requires cairo >= 1.10.0)
+ ;; qt4 wrapper: no
+ ;; glib wrapper: no (requires cairo output)
+ ;; introspection: no
+ ;; use gtk-doc: no
+ ;; use libcurl: no
+ ;; use libopenjpeg: no
(inputs `(("fontconfig" ,fontconfig)
("freetype" ,freetype)
("libjpeg-8" ,libjpeg-8)
+ ("libpng" ,libpng)
("libtiff" ,libtiff)
("pkg-config" ,pkg-config)
("zlib" ,zlib)))
(arguments
`(#:tests? #f ; no test data provided with the tarball
- #:configure-flags '("--enable-xpdf-headers"))) ; to install header files
+ #:configure-flags
+ '("--enable-xpdf-headers" ; to install header files
+ "--enable-zlib")))
(synopsis "Poppler, a pdf rendering library")
(description
"Poppler is a PDF rendering library based on the xpdf-3.0 code base.")
- (license gpl2+)
+ (license license:gpl2+)
(home-page "http://poppler.freedesktop.org/")))
+
+(define-public xpdf
+ (package
+ (name "xpdf")
+ (version "3.03")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "ftp://ftp.foolabs.com/pub/xpdf/xpdf-"
+ version ".tar.gz"))
+ (sha256 (base32
+ "1jnfzdqc54wa73lw28kjv0m7120mksb0zkcn81jdlvijyvc67kq2"))))
+ (build-system gnu-build-system)
+ (inputs `(("freetype" ,freetype)
+ ("lesstif" ,lesstif)
+ ("libpaper" ,libpaper)
+ ("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libxp" ,libxp)
+ ("libxpm" ,libxpm)
+ ("libxt" ,libxt)
+ ("zlib" ,zlib)
+ ("patch/constchar"
+ ,(search-patch "xpdf-constchar.patch"))))
+ (arguments
+ `(#:tests? #f ; there is no check target
+ #:patches (list (assoc-ref %build-inputs
+ "patch/constchar"))))
+ (synopsis "Viewer for pdf files based on the Motif toolkit.")
+ (description
+ "Xpdf is a viewer for Portable Document Format (PDF) files")
+ (license license:gpl3) ; or gpl2, but not gpl2+
+ (home-page "http://www.foolabs.com/xpdf/")))
diff --git a/gnu/packages/texlive.scm b/gnu/packages/texlive.scm
index 8ea78de873..090d342054 100644
--- a/gnu/packages/texlive.scm
+++ b/gnu/packages/texlive.scm
@@ -33,6 +33,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages tcsh)
+ #:use-module (gnu packages xorg)
#:use-module (gnu packages zip))
(define texlive-extra-src
@@ -66,6 +67,8 @@
("icu4c" ,icu4c)
("ghostscript" ,ghostscript)
("libpng" ,libpng)
+ ("libxaw" ,libxaw)
+ ("libxt" ,libxt)
("perl" ,perl)
("poppler" ,poppler)
("pkg-config" ,pkg-config)
@@ -88,7 +91,6 @@
,(string-append "--datarootdir=" (assoc-ref %outputs "data"))
,(string-append "--infodir=" (assoc-ref %outputs "out") "/share/info")
,(string-append "--mandir=" (assoc-ref %outputs "out") "/share/man")
- "--without-x" ; FIXME: Drop as soon as X is available.
"--with-system-freetype2"
;; "--with-system-gd"
;; "--with-system-graphite"
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index b3c5f7d512..2c4cda54a3 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -19,6 +19,7 @@
(define-module (gnu packages xml)
#:use-module (gnu packages)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages perl)
#:use-module (gnu packages python)
@@ -64,7 +65,21 @@ things the parser might find in the XML document (like start tags).")
(home-page "http://www.xmlsoft.org/")
(synopsis "libxml2, a C parser for XML")
(inputs `(("perl" ,perl)
- ("python" ,python)))
+ ("python" ,python)
+ ("zlib" ,zlib)))
+ (arguments
+ `(#:phases
+ (alist-replace
+ 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
+ (let ((install (assoc-ref %standard-phases 'install))
+ (glibc (assoc-ref inputs "libc"))
+ (out (assoc-ref outputs "out")))
+ (apply install args)
+ (chdir "python")
+ (substitute* "setup.py" (("/opt/include") (string-append glibc "/include")))
+ (system* "python" "setup.py" "install" (string-append "--prefix=" out))))
+ %standard-phases)))
(description
"Libxml2 is the XML C parser and toolkit developed for the Gnome project
(but it is usable outside of the Gnome platform).")
@@ -86,7 +101,19 @@ things the parser might find in the XML document (like start tags).")
(synopsis "libxslt, a C library for applying XSLT stylesheets to XML documents")
(inputs `(("libgcrypt" ,libgcrypt)
("libxml2" ,libxml2)
- ("python" ,python)))
+ ("python" ,python)
+ ("zlib" ,zlib)))
+ (arguments
+ `(#:phases
+ (alist-replace
+ 'configure
+ (lambda* (#:key inputs #:allow-other-keys #:rest args)
+ (let ((configure (assoc-ref %standard-phases 'configure))
+ (libxml2 (assoc-ref inputs "libxml2")))
+ ;; FIXME: This should be done more centrally.
+ (setenv "PYTHONPATH" (string-append libxml2 "/lib/python2.7/site-packages"))
+ (apply configure args)))
+ %standard-phases)))
(description
"Libxslt is an XSLT C library developed for the GNOME project. It is
based on libxml for XML parsing, tree manipulation and XPath support.")
@@ -99,7 +126,7 @@ based on libxml for XML parsing, tree manipulation and XPath support.")
(source (origin
(method url-fetch)
(uri (string-append
- "mirror://cpan/authors/id/M/MS/MSERGEANT/XML-Parser-"
+ "mirror://cpan/authors/id/T/TO/TODDR/XML-Parser-"
version ".tar.gz"))
(sha256
(base32
@@ -122,3 +149,41 @@ then passed on to the Expat object on each parse call. They can also be given
as extra arguments to the parse methods, in which case they override options
given at XML::Parser creation time.")
(home-page "http://search.cpan.org/~toddr/XML-Parser-2.41/Parser.pm")))
+
+(define-public intltool
+ (package
+ (name "intltool")
+ (version "0.50.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://launchpad.net/intltool/trunk/"
+ version "/+download/intltool-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "01j4yd7i84n9nk4ccs6yifg84pp68nr9by57jdbhj7dpdxf5rwk7"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("perl" ,perl)
+ ("perl-xml-parser" ,perl-xml-parser)))
+ (arguments
+ `(#:phases
+ (alist-replace
+ 'configure
+ (lambda* (#:key inputs #:allow-other-keys #:rest args)
+ (let ((configure (assoc-ref %standard-phases 'configure))
+ (perl-xml-parser (assoc-ref inputs "perl-xml-parser")))
+ ;; FIXME: This should be done more centrally.
+ (setenv "PERL5LIB" (string-append perl-xml-parser "/lib/perl5/site_perl"))
+ (apply configure args)))
+ %standard-phases)))
+ (home-page "https://launchpad.net/intltool/+download")
+ (synopsis "Utility scripts for internationalising xml")
+ (description
+ "intltool automatically extracts translatable strings from oaf, glade,
+bonobo ui, nautilus theme and other XML files into the po files.
+It automatically merges translations from po files back into .oaf files
+(encoding to be 7-bit clean). The merging mechanism can also be extended to
+support other types of XML files.")
+ (license license:gpl2+)))
+
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
new file mode 100644
index 0000000000..7c08e4471e
--- /dev/null
+++ b/gnu/packages/xorg.scm
@@ -0,0 +1,4872 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages xorg)
+ #:use-module ((guix licenses)
+ #:renamer (symbol-prefix-proc 'license:))
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages bison)
+ #:use-module (gnu packages compression)
+ #:use-module (gnu packages flex)
+ #:use-module (gnu packages fontutils)
+ #:use-module ((gnu packages gettext)
+ #:renamer (symbol-prefix-proc 'gnu:))
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gperf)
+ #:use-module (gnu packages libpng)
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages m4)
+ #:use-module (gnu packages openssl)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages xml))
+
+
+
+;; packages outside the x.org system proper
+
+(define-public xeyes
+ (package
+ (name "xeyes")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://xeyes.sourcearchive.com/downloads/1.0.1/xeyes_"
+ version
+ ".orig.tar.gz"))
+ (sha256
+ (base32
+ "04c3md570j67g55h3bix1qbngcslnq91skli51k3g1avki88zkm9"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxext" ,libxext)
+ ("libxmu" ,libxmu)
+ ("libxt" ,libxt)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://xeyes.sourcearchive.com/")
+ (synopsis "A follow the mouse X demo")
+ (description "Xeyes is a demo program for x.org. It shows eyes
+following the mouse.")
+ (license license:x11)))
+
+
+(define-public pixman
+ (package
+ (name "pixman")
+ (version "0.28.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://cairographics.org/releases/pixman-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0mcvxd5gx3w1wzgph91l2vaiic91jmx7s01hi2igphyvd80ckyia"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libpng" ,libpng)
+ ("pkg-config" ,pkg-config)
+ ("zlib" ,zlib)))
+ (home-page "http://www.pixman.org/")
+ (synopsis "pixman, a low-level pixel manipulation library")
+ (description "Pixman is a low-level software library for pixel
+manipulation, providing features such as image compositing and trapezoid
+rasterisation.")
+ (license license:x11)))
+
+
+(define-public libdrm
+ (package
+ (name "libdrm")
+ (version "2.4.42")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://dri.freedesktop.org/libdrm/libdrm-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1qbnpi64hyqzd650hj6jki1d50pzypdhj3rw9m3whwbqly110rz0"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libpciaccess" ,libpciaccess)
+ ("libpthread-stubs" ,libpthread-stubs)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://dri.freedesktop.org/wiki/")
+ (synopsis "libdrm, direct rendering userspace library")
+ (description "The Direct Rendering Infrastructure, also known as the DRI,
+is a framework for allowing direct access to graphics hardware under the
+X Window System in a safe and efficient manner. It includes changes to the
+X server, to several client libraries, and to the kernel (DRM, Direct
+Rendering Manager). The most important use for the DRI is to create fast
+OpenGL implementations providing hardware acceleration for Mesa.
+Several 3D accelerated drivers have been written to the DRI specification,
+including drivers for chipsets produced by 3DFX, AMD (formerly ATI), Intel
+and Matrox.")
+ (license license:x11)))
+
+
+;; old version, required by old mesa, see
+;; http://www.mail-archive.com/nouveau@lists.freedesktop.org/msg10098.html
+(define-public libdrm-2.4.33
+ (package (inherit libdrm)
+ (version "2.4.33")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://dri.freedesktop.org/libdrm/libdrm-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1slgi61n4dlsfli47ql354fd1ppj7n40jd94wvnsdqx0mna9syrd"))))
+ (arguments
+ `(#:configure-flags
+ ;; create libdrm_nouveau.so, needed by mesa, see
+ ;; http://comments.gmane.org/gmane.linux.lfs.beyond.support/43261
+ `("--enable-nouveau-experimental-api")))))
+
+
+(define-public mtdev
+ (package
+ (name "mtdev")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://bitmath.org/code/mtdev/mtdev-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "159ndzwfpw0xr8mw4lhl47w9c2krshlfrscs7k6n186vknv2hk3d"))))
+ (build-system gnu-build-system)
+ (home-page "http://bitmath.org/code/mtdev/")
+ (synopsis "Multitouch protocol translation library")
+ (description "Mtdev is a stand-alone library which transforms all
+variants of kernel MT events to the slotted type B protocol. The events
+put into mtdev may be from any MT device, specifically type A without
+contact tracking, type A with contact tracking, or type B with contact
+tracking.")
+ (license license:x11)))
+
+
+
+ ;; packages without propagated input
+;; (rationale for this separation: The packages in PROPAGATED_INPUTS need to
+;; be defined first, the split makes book-keeping easier.)
+
+
+;; compiles only on macos
+;; (define-public applewmproto
+;; (package
+;; (name "applewmproto")
+;; (version "1.4.2")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/applewmproto-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "1zi4p07mp6jmk030p4gmglwxcwp0lzs5mi31y1b4rp8lsqxdxizw"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license license:x11)))
+
+
+(define-public bdftopcf
+ (package
+ (name "bdftopcf")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/bdftopcf-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02hx981f7jfwylxj21s91yvv4h597nqqzz3vd6ar81zyn84b944w"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxfont" ,libxfont)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public bigreqsproto
+ (package
+ (name "bigreqsproto")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/bigreqsproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07hvfm84scz8zjw14riiln2v4w03jlhp756ypwhq27g48jmic8a6"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public compositeproto
+ (package
+ (name "compositeproto")
+ (version "0.4.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/compositeproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1z0crmf669hirw4s7972mmp8xig80kfndja9h559haqbpvq5k4q4"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("fixesproto" ,fixesproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public damageproto
+ (package
+ (name "damageproto")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/damageproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0nzwr5pv9hg7c21n995pdiv0zqhs91yz3r8rn3aska4ykcp12z2w"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public dmxproto
+ (package
+ (name "dmxproto")
+ (version "2.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/dmxproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02b5x9dkgajizm8dqyx2w6hmqx3v25l67mgf35nj6sz0lgk52877"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public dri2proto
+ (package
+ (name "dri2proto")
+ (version "2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/dri2proto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02drlfqvjm2q7dvkkwli3fs2crb6rdb3kyd13vwx7z0rijrc10md"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public encodings
+ (package
+ (name "encodings")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/encodings-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ffmaw80vmfwdgvdkp6495xgsqszb6s0iira5j0j6pd4i0lk3mnf"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontscale" ,mkfontscale)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:public-domain)))
+
+
+(define-public font-adobe100dpi
+ (package
+ (name "font-adobe100dpi")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-adobe-100dpi-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0m60f5bd0caambrk8ksknb5dks7wzsg7g7xaf0j21jxmx8rq9h5j"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("bdftopcf" ,bdftopcf)
+ ("font-util", font-util)
+ ("mkfontdir" ,mkfontdir)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-adobe75dpi
+ (package
+ (name "font-adobe75dpi")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-adobe-75dpi-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02advcv9lyxpvrjv8bjh1b797lzg6jvhipclz49z8r8y98g4l0n6"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("bdftopcf" ,bdftopcf)
+ ("font-util", font-util)
+ ("mkfontdir" ,mkfontdir)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-adobe-utopia100dpi
+;; (package
+;; (name "font-adobe-utopia100dpi")
+;; (version "1.0.4")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-100dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "19dd9znam1ah72jmdh7i6ny2ss2r6m21z9v0l43xvikw48zmwvyi"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-adobe-utopia75dpi
+;; (package
+;; (name "font-adobe-utopia75dpi")
+;; (version "1.0.4")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-75dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "152wigpph5wvl4k9m3l4mchxxisgsnzlx033mn5iqrpkc6f72cl7"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-adobe-utopia-type1
+;; (package
+;; (name "font-adobe-utopia-type1")
+;; (version "1.0.4")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-type1-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0xw0pdnzj5jljsbbhakc6q9ha2qnca1jr81zk7w70yl9bw83b54p"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-alias
+ (package
+ (name "font-alias")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-alias-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "16ic8wfwwr3jicaml7b5a0sk6plcgc1kg84w02881yhwmqm3nicb"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-arabic-misc
+ (package
+ (name "font-arabic-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-arabic-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-bh100dpi
+;; (package
+;; (name "font-bh100dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-100dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "10cl4gm38dw68jzln99ijix730y7cbx8np096gmpjjwff1i73h13"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bh75dpi
+;; (package
+;; (name "font-bh75dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-75dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "073jmhf0sr2j1l8da97pzsqj805f7mf9r2gy92j4diljmi8sm1il"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bh-lucidatypewriter100dpi
+;; (package
+;; (name "font-bh-lucidatypewriter100dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-lucidatypewriter-100dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "1fqzckxdzjv4802iad2fdrkpaxl4w0hhs9lxlkyraq2kq9ik7a32"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bh-lucidatypewriter75dpi
+;; (package
+;; (name "font-bh-lucidatypewriter75dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-lucidatypewriter-75dpi-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0cfbxdp5m12cm7jsh3my0lym9328cgm7fa9faz2hqj05wbxnmhaa"))))
+;; (build-system gnu-build-system)
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bh-type1
+;; (package
+;; (name "font-bh-type1")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontscale" ,mkfontscale)
+;; ("mkfontdir" ,mkfontdir)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bitstream100dpi
+;; (package
+;; (name "font-bitstream100dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontscale" ,mkfontscale)
+;; ("mkfontdir" ,mkfontdir)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+;;
+;;
+;; (define-public font-bitstream75dpi
+;; (package
+;; (name "font-bitstream75dpi")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontscale" ,mkfontscale)
+;; ("mkfontdir" ,mkfontdir)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-bitstream-type1
+ (package
+ (name "font-bitstream-type1")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-cronyx-cyrillic
+ (package
+ (name "font-cronyx-cyrillic")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-cursor-misc
+;; (package
+;; (name "font-cursor-misc")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-cursor-misc-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0dd6vfiagjc4zmvlskrbjz85jfqhf060cpys8j0y1qpcbsrkwdhp"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontscale" ,mkfontscale)
+;; ("mkfontdir" ,mkfontdir)
+;; ("bdftopcf" ,bdftopcf)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license none)))
+;;
+;;
+;; (define-public font-daewoo-misc
+;; (package
+;; (name "font-daewoo-misc")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-daewoo-misc-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "1s2bbhizzgbbbn5wqs3vw53n619cclxksljvm759h9p1prqdwrdw"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontdir" ,mkfontdir)
+;; ("bdftopcf" ,bdftopcf)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-dec-misc
+ (package
+ (name "font-dec-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-dec-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-ibm-type1
+;; (package
+;; (name "font-ibm-type1")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "1pyjll4adch3z5cg663s6vhi02k8m6488f0mrasg81ssvg9jinzx"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontdir" ,mkfontdir)
+;; ("bdftopcf" ,bdftopcf)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-isas-misc
+ (package
+ (name "font-isas-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-isas-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-jis-misc
+;; (package
+;; (name "font-jis-misc")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-jis-misc-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0rdc3xdz12pnv951538q6wilx8mrdndpkphpbblszsv7nc8cw61b"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontdir" ,mkfontdir)
+;; ("bdftopcf" ,bdftopcf)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-micro-misc
+ (package
+ (name "font-micro-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-micro-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:public-domain)))
+
+
+(define-public font-misc-cyrillic
+ (package
+ (name "font-misc-cyrillic")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-misc-cyrillic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-misc-ethiopic
+ (package
+ (name "font-misc-ethiopic")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-misc-ethiopic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public font-misc-meltho
+;; (package
+;; (name "font-misc-meltho")
+;; (version "1.0.3")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/font-misc-meltho-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "148793fqwzrc3bmh2vlw5fdiwjc2n7vs25cic35gfp452czk489p"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("mkfontscale" ,mkfontscale)
+;; ("mkfontdir" ,mkfontdir)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public font-misc-misc
+ (package
+ (name "font-misc-misc")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-misc-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("font-util" ,font-util)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:public-domain)))
+
+
+(define-public font-mutt-misc
+ (package
+ (name "font-mutt-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-mutt-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-schumacher-misc
+ (package
+ (name "font-schumacher-misc")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-schumacher-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("font-util" ,font-util)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-screen-cyrillic
+ (package
+ (name "font-screen-cyrillic")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-screen-cyrillic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-sony-misc
+ (package
+ (name "font-sony-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-sony-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-sun-misc
+ (package
+ (name "font-sun-misc")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-sun-misc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-util
+ (package
+ (name "font-util")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-util-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "15cijajwhjzpy3ydc817zz8x5z4gbkyv3fps687jbq544mbfbafz"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public font-winitzki-cyrillic
+ (package
+ (name "font-winitzki-cyrillic")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-winitzki-cyrillic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("bdftopcf" ,bdftopcf)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:public-domain)))
+
+
+(define-public font-xfree86-type1
+ (package
+ (name "font-xfree86-type1")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/font-xfree86-type1-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0jp3zc0qfdaqfkgzrb44vi9vi0a8ygb35wp082yz7rvvxhmg9sya"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mkfontdir" ,mkfontdir)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public fontsproto
+ (package
+ (name "fontsproto")
+ (version "2.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/fontsproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ab8mbqxdwvdz4k5x4xb9c4n5w7i1xw276cbpk4z7a1nlpjrg746"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public glproto
+ (package
+ (name "glproto")
+ (version "1.4.15")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/glproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0wf1vq9g4pyzahb23ywx554pm5bpax49lz188fk6m5p8wbmmc0wr"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public iceauth
+ (package
+ (name "iceauth")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/iceauth-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1aq6v671s2x5rc6zn0rgxb4wddg4vq94mckw3cpwl7ccrjjvd5hl"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libice" ,libice)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public inputproto
+ (package
+ (name "inputproto")
+ (version "2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/inputproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1c5wqamfsd8g5i8kya5pjfmcac8q5zq1l3vclh6p96f24nmicxfy"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public kbproto
+ (package
+ (name "kbproto")
+ (version "1.0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/kbproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0yal11hhpiisy3w8wmacsdzzzcnc3xwnswxz8k7zri40xc5aqz03"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; requires applewmproto, which compiles only on macos
+;; (define-public libapplewm
+;; (package
+;; (name "libapplewm")
+;; (version "1.4.1")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/libAppleWM-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y"))))
+;; (build-system gnu-build-system)
+;; (inputs
+;; `(("xextproto" ,xextproto)
+;; ("libxext" ,libxext)
+;; ("libx11" ,libx11)
+;; ("applewmproto" ,applewmproto)
+;; ("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license license:x11)))
+
+
+(define-public libdmx
+ (package
+ (name "libdmx")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libdmx-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1fiq73sfxcbyjval118ialwrzxhzb08xsxmg69adcs47i9j0p1x7"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xextproto" ,xextproto)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("dmxproto" ,dmxproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libfontenc
+ (package
+ (name "libfontenc")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libfontenc-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0zq1483xy31sssq0h3xxf8y1v4q14cp8rv164ayn7fsn30pq2wny"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("zlib" ,zlib)
+ ("xproto" ,xproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libfs
+ (package
+ (name "libfs")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libFS-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "05c3bqgn5m7j4kx8wvy0p36faq6f9jv5yq12m6033m4lflg7cwvh"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xtrans" ,xtrans)
+ ("xproto" ,xproto)
+ ("fontsproto" ,fontsproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libpciaccess
+ (package
+ (name "libpciaccess")
+ (version "0.13.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libpciaccess-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "11509lkgd5j4g5wy0g13z4sf31h50hqx3jfwb2i4q6k98pv6iar7"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("zlib" ,zlib) ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libpthread-stubs
+ (package
+ (name "libpthread-stubs")
+ (version "0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://xcb.freedesktop.org/dist/libpthread-stubs-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "16bjv3in19l84hbri41iayvvg4ls9gv1ma0x0qlbmwy67i7dbdim"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libsm
+ (package
+ (name "libsm")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libSM-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07bzi6xwlhq36f60qfspjbz0qjj7zcgayi1vp4ihgx34kib1vhck"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xtrans" ,xtrans)
+ ("util-linux" ,util-linux)
+ ("libice" ,libice)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libwindowswm
+ (package
+ (name "libwindowswm")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libWindowsWM-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1p0flwb67xawyv6yhri9w17m1i4lji5qnd0gq8v1vsfb8zw7rw15"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xextproto" ,xextproto)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("windowswmproto" ,windowswmproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxcomposite
+ (package
+ (name "libxcomposite")
+ (version "0.4.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXcomposite-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1b8sniijb85v4my6v30ma9yqnwl4hkclci9l1hqxnipfyhl4sa9j"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxfixes" ,libxfixes)
+ ("libx11" ,libx11)
+ ("compositeproto" ,compositeproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxdmcp
+ (package
+ (name "libxdmcp")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXdmcp-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxft
+ (package
+ (name "libxft")
+ (version "2.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXft-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1gdv6559cdz1lfw73x7wsvax1fkvphmayrymprljhyyb5nwk5kkz"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("xproto" ,xproto)
+ ("libxrender" ,libxrender)
+ ("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("freetype" ,freetype)
+ ("fontconfig" ,fontconfig)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxkbfile
+ (package
+ (name "libxkbfile")
+ (version "1.0.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libxkbfile-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0flg5arw6n3njagmsi4i4l0zl5bfx866a1h9ydc3bi1pqlclxaca"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxmu
+ (package
+ (name "libxmu")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXmu-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1pbym8rrznxqd60zwf7w4xpf27sa72bky2knginqcfnca32q343h"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxt" ,libxt)
+ ("xproto" ,xproto)
+ ("libxext" ,libxext)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxpm
+ (package
+ (name "libxpm")
+ (version "3.5.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXpm-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0dd737ch4q9gr151wff1m3q2j7wf3pip4y81601xdrsh8wipxnx6"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("gettext" ,gnu:gettext)
+ ("libxt" ,libxt)
+ ("xproto" ,xproto)
+ ("libxext" ,libxext)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxres
+ (package
+ (name "libxres")
+ (version "1.0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXres-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1478pm70gdi6l70r4jpkyyg2am9wv6xh53z9ibwq5cg84p4n31pz"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("resourceproto" ,resourceproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxscrnsaver
+ (package
+ (name "libxscrnsaver")
+ (version "1.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXScrnSaver-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07ff4r20nkkrj7h08f9fwamds9b3imj8jz5iz6y38zqw6jkyzwcg"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("scrnsaverproto" ,scrnsaverproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxxf86dga
+ (package
+ (name "libxxf86dga")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXxf86dga-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "15291ddhyr54sribwbg8hxx2psgzm5gh0pgkw5yrf3zgvdsa67sm"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public luit
+ (package
+ (name "luit")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/luit-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0dn694mk56x6hdk6y9ylx4f128h5jcin278gnw2gb807rf3ygc1h"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libfontenc" ,libfontenc)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public makedepend
+ (package
+ (name "makedepend")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/makedepend-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1zpp2b9dfvlnfj2i1mzdyn785rpl7vih5lap7kcpiv80xspbhmmb"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public mkfontscale
+ (package
+ (name "mkfontscale")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/mkfontscale-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1539h3ws66vcql6sf2831bcs0r4d9b05lcgpswkw33lvcxighmff"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("zlib" ,zlib)
+ ("xproto" ,xproto)
+ ("freetype" ,freetype)
+ ("libfontenc" ,libfontenc)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; The package is missing from X11R7.7.
+(define-public printproto
+ (package
+ (name "printproto")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/individual/proto/printproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "06liap8n4s25sgp27d371cc7yg9a08dxcr3pmdjp761vyin3360j"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public randrproto
+ (package
+ (name "randrproto")
+ (version "1.3.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/randrproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0wfwcq85wbm0g5r0snc7prgki1wi3kxrxhcxinyr54n45ihh03fr"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public recordproto
+ (package
+ (name "recordproto")
+ (version "1.14.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/recordproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0w3kgr1zabwf79bpc28dcnj0fpni6r53rpi82ngjbalj5s6m8xx7"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public renderproto
+ (package
+ (name "renderproto")
+ (version "0.11.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/renderproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0dr5xw6s0qmqg0q5pdkb4jkdhaja0vbfqla79qh5j1xjj9dmlwq6"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public resourceproto
+ (package
+ (name "resourceproto")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/resourceproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0638iyfiiyjw1hg3139pai0j6m65gkskrvd9684zgc6ydcx00riw"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public scrnsaverproto
+ (package
+ (name "scrnsaverproto")
+ (version "1.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/scrnsaverproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0rfdbfwd35d761xkfifcscx56q0n56043ixlmv70r4v4l66hmdwb"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public sessreg
+ (package
+ (name "sessreg")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/sessreg-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0lifgjxdvc6lwyjk90slddnr12fsv88ldy6qhklr5av409cfwd47"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public setxkbmap
+ (package
+ (name "setxkbmap")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/setxkbmap-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1inygpvlgc6vr5h9laxw9lnvafnccl3fy0g5n9ll28iq3yfmqc1x"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxkbfile" ,libxkbfile)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public smproxy
+ (package
+ (name "smproxy")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/smproxy-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02fn5wa1gs2jap6sr9j9yk6zsvz82j8l61pf74iyqwa99q4wnb67"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxt" ,libxt)
+ ("libxmu" ,libxmu)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public util-macros
+ (package
+ (name "util-macros")
+ (version "1.17")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/util-macros-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1vbmrcn5n3wp4pyw0n4c3pyvzlc4yf7jzgngavfdq5zwfbgfsybx"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public videoproto
+ (package
+ (name "videoproto")
+ (version "2.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/videoproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0nk3i6gwkqq1w8zwn7bxz344pi1dwcjrmf6hr330h7hxjcj6viry"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public windowswmproto
+ (package
+ (name "windowswmproto")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/windowswmproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0syjxgy4m8l94qrm03nvn5k6bkxc8knnlld1gbllym97nvnv0ny0"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public x11perf
+ (package
+ (name "x11perf")
+ (version "1.5.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/x11perf-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "111iwpxhnxjiq44w96zf0kszg5zpgv1g3ayx18v4nhdzl9bqivi4"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("libxft" ,libxft)
+ ("libxmu" ,libxmu)
+ ("libxrender" ,libxrender)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xauth
+ (package
+ (name "xauth")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xauth-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1382wdfiakgckbw1xxavzh1nm34q21b1zzy96qp7ws66xc48rxw4"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxmu" ,libxmu)
+ ("libxext" ,libxext)
+ ("libxau" ,libxau)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xbacklight
+ (package
+ (name "xbacklight")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xbacklight-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02b5jfys2msla2yvg5s0knzyxg2104r25czkwd49i8g8kp804bxg"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("libxrandr" ,libxrandr)
+ ("libxrender" ,libxrender)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xbitmaps
+ (package
+ (name "xbitmaps")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xbitmaps-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "178ym90kwidia6nas4qr5n5yqh698vv8r02js0r4vg3b6lsb0w9n"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xcb-proto
+ (package
+ (name "xcb-proto")
+ (version "1.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://xcb.freedesktop.org/dist/xcb-proto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ds4qg6slidrzyz6q9ckq0a19hn6blzpnvciy4brh741gn49jpdd"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("pkg-config" ,pkg-config) ("python" ,python)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xcmiscproto
+ (package
+ (name "xcmiscproto")
+ (version "1.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xcmiscproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1pyjv45wivnwap2wvsbrzdvjc5ql8bakkbkrvcv6q9bjjf33ccmi"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xcmsdb
+ (package
+ (name "xcmsdb")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xcmsdb-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "03ms731l3kvaldq7ycbd30j6134b61i3gbll4b2gl022wyzbjq74"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xcursor-themes
+ (package
+ (name "xcursor-themes")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xcursor-themes-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1is4bak0qkkhv63mfa5l7492r475586y52yzfxyv3psppn662ilr"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxcursor" ,libxcursor)
+ ("pkg-config" ,pkg-config)
+ ("xcursorgen" ,xcursorgen)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xcursorgen
+ (package
+ (name "xcursorgen")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xcursorgen-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "10f5wk1326mm45gvgpf4m2p0j80fcd0i4c52zikahb91zah72wdw"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxcursor" ,libxcursor)
+ ("libpng" ,libpng)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xdpyinfo
+ (package
+ (name "xdpyinfo")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xdpyinfo-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0gypsvpmay3lsh3b1dg29pjxv95pkrr21d4w6ys02mrbld24kvi3"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("inputproto" ,inputproto)
+ ("libx11" ,libx11)
+ ("libxxf86vm" ,libxxf86vm)
+ ("libxxf86dga" ,libxxf86dga)
+ ("libxtst" ,libxtst)
+ ("libxrender" ,libxrender)
+ ("libxinerama" ,libxinerama)
+ ("libxi" ,libxi)
+ ("libxcomposite" ,libxcomposite)
+ ("libdmx" ,libdmx)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xdriinfo
+ (package
+ (name "xdriinfo")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xdriinfo-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "076bjix941znyjmh3j5jjsnhp2gv2iq53d0ks29mvvv87cyy9iim"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("mesa" ,mesa)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xev
+ (package
+ (name "xev")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xev-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "13xk5z7vy87rnn4574z0jfzymdivyc7pl4axim81sx0pmdysg1ip"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxrender" ,libxrender)
+ ("libxrandr" ,libxrandr)
+ ("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xextproto
+ (package
+ (name "xextproto")
+ (version "7.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xextproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "06kdanbnprxvgl56l5h0lqj4b0f1fbb1ndha33mv5wvy802v2lvw"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-input-evdev
+ (package
+ (name "xf86-input-evdev")
+ (version "2.7.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-evdev-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ivf5n821chckrgp89mpb18zi00v1hyrkc1hr82q0x6g1kpgxq9y"))))
+ (build-system gnu-build-system)
+ ;; FIXME: Add required input udev once it is available.
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; FIXME: Tries to install file joystick-properties.h into ...--xorg-server-1.12.2/include/xorg
+(define-public xf86-input-joystick
+ (package
+ (name "xf86-input-joystick")
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-joystick-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1xgpkdmfw4ahjlva97gs9sllzw8nlpa8mxj59g28fxhak67mvv8x"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-input-keyboard
+ (package
+ (name "xf86-input-keyboard")
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-keyboard-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1hwc1bjw5mxv186xbrxiky0agfglwqg8fsxqdh4br1vzgxpck7ma"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-input-mouse
+ (package
+ (name "xf86-input-mouse")
+ (version "1.7.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0fs1lwnycyv3d0m6l2wrnlgvbs8qw66d93hwlnmrsswfq5bp6ark"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-input-synaptics
+ (package
+ (name "xf86-input-synaptics")
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-synaptics-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0g5b1s6q1dg38l8y47cwg7cs5nivwj0agmp71g273ws0lfg4bc8s"))))
+ (build-system gnu-build-system)
+ (inputs `(("libx11" ,libx11)
+ ("libxi" ,libxi)
+ ("mtdev" ,mtdev)
+ ("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; FIXME: Installation tries to create ...-xorg-server-1.12.2/share/X11/xorg.conf.d
+(define-public xf86-input-vmmouse
+ (package
+ (name "xf86-input-vmmouse")
+ (version "12.8.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-vmmouse-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "16l65mnjb1xxav6c5q0xhhqih81bzify2c5qrhqc2j3waq5yr9m8"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-input-void
+ (package
+ (name "xf86-input-void")
+ (version "1.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-input-void-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "01bmk324fq48wydvy1qrnxbw6qz0fjd0i80g0n4cqr1c4mjmif9a"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-ark
+ (package
+ (name "xf86-video-ark")
+ (version "0.7.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-ark-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "194zc35ivfh3vcxcilf9nbi88c2di8kbh84x535cljlpiajdnk5x"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-ast
+ (package
+ (name "xf86-video-ast")
+ (version "0.93.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-ast-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1q64z8qqa0ix3cymqiwk1s3sphd1fvvz30lvyxhgkgciygz6dm69"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-ati
+ (package
+ (name "xf86-video-ati")
+ (version "6.14.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-ati-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "11gg6xn65vym75769hzgzpkjsyhlkrw4zw3ncngriq7vz1g47zjg"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xxf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-cirrus
+ (package
+ (name "xf86-video-cirrus")
+ (version "1.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-cirrus-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0blnbspj4936wy46lp346s4b08dfcray6yicsxvv5b4699fzl1rb"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public xf86-video-dummy
+;; (package
+;; (name "xf86-video-dummy")
+;; (version "0.3.5")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xf86-video-dummy-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0pyr50kqh7g84r4p0x09ay5kxax20dip9sh8h3cbd4xv8cswdbfm"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license non-free)))
+
+
+(define-public xf86-video-fbdev
+ (package
+ (name "xf86-video-fbdev")
+ (version "0.4.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-fbdev-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1mc23w0bfmak5216411xh58nrs93jlxmi6l412hmqzhxnjs73clk"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; Compilation errors: Assembler messages operand size mismatch etc.
+;; (define-public xf86-video-geode
+;; (package
+;; (name "xf86-video-geode")
+;; (version "2.11.13")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xf86-video-geode-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "09p2cjd2fb7h32k9qs4wp7qvhfn2zv454spv5mfplv7w2jis4863"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)
+;; ("xorg-server" ,xorg-server)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license license:x11)))
+
+
+;; Driver for obsolete graphics cards, depends on libglide:
+;; http://sourceforge.net/projects/glide/ ,
+;; last updated in 2003, and which does not compile out of the box any more.
+;; (define-public xf86-video-glide
+;; (package
+;; (name "xf86-video-glide")
+;; (version "1.2.0")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xf86-video-glide-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0byapm9mnpqk3wijfnnan3d22ii5cw6dmg4xn1625iiz89j5vs1l"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)
+;; ("xorg-server" ,xorg-server)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license license:x11)))
+
+
+(define-public xf86-video-glint
+ (package
+ (name "xf86-video-glint")
+ (version "1.2.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-glint-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0nf36jryabpncqq4m6sfsnmzk00f7gvfmjnl8l8sfy7w6sa6iacs"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-i128
+ (package
+ (name "xf86-video-i128")
+ (version "1.3.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-i128-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1sik8ck410hb2885vy7rlc590hw5br8lr2fzxgmv55jyawgfpv9y"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-intel
+ (package
+ (name "xf86-video-intel")
+ (version "2.19.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-intel-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1g742szymajh88a5dw08sxcr45bmxgc4w3m6hddv9qscn5hks4rj"))))
+ (build-system gnu-build-system)
+ (inputs `(("libdrm" ,libdrm)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-mach64
+ (package
+ (name "xf86-video-mach64")
+ (version "6.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-mach64-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0kl3kvpc2ny48z89313i9fi4cxzwb2pllvxcr9j5ly680ygx8slz"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-mga
+ (package
+ (name "xf86-video-mga")
+ (version "1.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-mga-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "03l3wz5kz0hmxmzqqbkgn7pf9d956jlag04rb701a0fr1mw3v66a"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-neomagic
+ (package
+ (name "xf86-video-neomagic")
+ (version "1.2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-neomagic-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "124qci48xrk0w2jy91n7vqs7s6q397zyiqqszhmkx6ld7six57mi"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-newport
+ (package
+ (name "xf86-video-newport")
+ (version "0.2.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-newport-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1yafmp23jrfdmc094i6a4dsizapsc9v0pl65cpc8w1kvn7343k4i"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-nv
+ (package
+ (name "xf86-video-nv")
+ (version "2.1.18")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-nv-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "05glbi9jc7j9nm4sf4qvl3z87s48ibm3i283lqz85kbphg62dxvc"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-openchrome
+ (package
+ (name "xf86-video-openchrome")
+ (version "0.2.906")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-openchrome-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0hgzn1r7ig94xbr9dvq0bp1nxqlfp2ki8823jca3f22a2kf8wmg7"))))
+ (build-system gnu-build-system)
+ (inputs `(("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libxvmc" ,libxvmc)
+ ("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-r128
+ (package
+ (name "xf86-video-r128")
+ (version "6.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-r128-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1c84x40k9qz9dnf5qs6nnjcgz7px6mpc3rbk8mj62zhp7mf16hbv"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-savage
+ (package
+ (name "xf86-video-savage")
+ (version "2.3.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-savage-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0jdy4wv3k3ylx3lajjcbsg37z2hf6366a1jvv16sv1ln6dk6lris"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-siliconmotion
+ (package
+ (name "xf86-video-siliconmotion")
+ (version "1.7.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-siliconmotion-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "01sdl6ky1vmvmfgx2d44i35rqafi0z07xdy40cvindcr2k91p7x5"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-sis
+ (package
+ (name "xf86-video-sis")
+ (version "0.10.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-sis-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "03diq0l93lfsipmwkpdb2ysgbxxryl6yakpghzc3fksjxa01112f"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:bsd-3)))
+
+
+(define-public xf86-video-suncg6
+ (package
+ (name "xf86-video-suncg6")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-suncg6-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07w0hm63fiy5l3cpcjsl0ig8z84z9r36xm0cmnpiv3g75dy6q8fi"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-sunffb
+ (package
+ (name "xf86-video-sunffb")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-sunffb-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "04byax4sc1fn183vyyq0q11q730k16h2by4ggjky7s36wgv7ldzx"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-tdfx
+ (package
+ (name "xf86-video-tdfx")
+ (version "1.4.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-tdfx-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "124gsi30rj547jjd7gvv7xykfnwlyrxw0gcacamby7pvl3g33fg0"))))
+ (build-system gnu-build-system)
+ (inputs `(("mesa" ,mesa)
+ ("pkg-config" ,pkg-config)
+ ("xf86driproto" ,xf86driproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-tga
+ (package
+ (name "xf86-video-tga")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-tga-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0mdqrn02zzkdnmhg4vh9djaawg6b2p82g5qbj66z8b30yr77b93h"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-trident
+ (package
+ (name "xf86-video-trident")
+ (version "1.3.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-trident-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "02y5pzdp0a1c12jr8gghbrzgbyfbgq67x7kd7n4f323pmf8x1csb"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public xf86-video-v4l
+;; (package
+;; (name "xf86-video-v4l")
+;; (version "0.2.0")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xf86-video-v4l-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0pcjc75hgbih3qvhpsx8d4fljysfk025slxcqyyhr45dzch93zyb"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license none)))
+
+
+(define-public xf86-video-vesa
+ (package
+ (name "xf86-video-vesa")
+ (version "2.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-vesa-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0wqms28kkz2fvghqhqwp6w8zj7k5cgwnhzvkc7j4v268bf6h78g4"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-vmware
+ (package
+ (name "xf86-video-vmware")
+ (version "12.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-vmware-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0isiwx516gww8hfk3vy7js83yziyjym9mq2zjadyq1a8v5gqf9y8"))))
+ (build-system gnu-build-system)
+ (inputs `(("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86-video-voodoo
+ (package
+ (name "xf86-video-voodoo")
+ (version "1.2.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86-video-voodoo-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ha748yz92yzn6hp2rhin3il8f4j2rs4vkgdvqkagnv1ryxkh0ph"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xorg-server" ,xorg-server)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; Only relevant for the frame buffer on BSD systems.
+;; (define-public xf86-video-wsfb
+;; (package
+;; (name "xf86-video-wsfb")
+;; (version "0.4.0")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xf86-video-wsfb-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0hr8397wpd0by1hc47fqqrnaw3qdqd8aqgwgzv38w5k3l3jy6p4p"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)
+;; ("xorg-server" ,xorg-server)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license license:bsd-2)))
+
+
+(define-public xf86bigfontproto
+ (package
+ (name "xf86bigfontproto")
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0j0n7sj5xfjpmmgx6n5x556rw21hdd18fwmavp95wps7qki214ms"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86dgaproto
+ (package
+ (name "xf86dgaproto")
+ (version "2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86dgaproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0l4hx48207mx0hp09026r6gy9nl3asbq0c75hri19wp1118zcpmc"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86driproto
+ (package
+ (name "xf86driproto")
+ (version "2.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86driproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07v69m0g2dfzb653jni4x656jlr7l84c1k39j8qc8vfb45r8sjww"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xf86vidmodeproto
+ (package
+ (name "xf86vidmodeproto")
+ (version "2.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0w47d7gfa8zizh2bshdr2rffvbr4jqjv019mdgyh6cmplyd4kna5"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xgamma
+ (package
+ (name "xgamma")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xgamma-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0463sawps86jnxn121ramsz4sicy3az5wa5wsq4rqm8dm3za48p3"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxxf86vm" ,libxxf86vm)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xhost
+ (package
+ (name "xhost")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xhost-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0l483y6wfrjh37j16b41kpi2nc7ss5rvndafpbaylrs87ygx2w18"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxmu" ,libxmu)
+ ("libxau" ,libxau)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xineramaproto
+ (package
+ (name "xineramaproto")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xineramaproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ns8abd27x7gbp4r44z3wc5k9zqxxj8zjnazqpcyr4n17nxp8xcp"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xinput
+ (package
+ (name "xinput")
+ (version "1.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xinput-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0zl4cdgnzh9shz20yn7hz889v4nkbyqwx0nb7dh6arn7abchgc2a"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxrender" ,libxrender)
+ ("libxrandr" ,libxrandr)
+ ("libxinerama" ,libxinerama)
+ ("libxi" ,libxi)
+ ("libx11" ,libx11)
+ ("inputproto" ,inputproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xkbcomp
+ (package
+ (name "xkbcomp")
+ (version "1.2.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xkbcomp-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0bas1d2wjiy5zy9d0g92d2p9pwv4aapfbfidi7hxy8ax8jmwkl4i"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxkbfile" ,libxkbfile)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xkbevd
+ (package
+ (name "xkbevd")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xkbevd-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "05h1xcnbalndbrryyqs8wzy9h3wz655vc0ymhlk2q4aik17licjm"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxkbfile" ,libxkbfile)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xkbutils
+ (package
+ (name "xkbutils")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xkbutils-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ga913pw6chssf2016kjyjl6ar2lj83pa497w97ak2kq603sy2g4"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxt" ,libxt)
+ ("xproto" ,xproto)
+ ("libxaw" ,libxaw)
+ ("inputproto" ,inputproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xkeyboard-config
+ (package
+ (name "xkeyboard-config")
+ (version "2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xkeyboard-config-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("gettext" ,gnu:gettext)
+ ("intltool" ,intltool)
+ ("libx11" ,libx11)
+ ;; required to set PERL5LIB, although it is propagated by intltool
+ ("perl-xml-parser" ,perl-xml-parser)
+ ("pkg-config" ,pkg-config)
+ ("xkbcomp" ,xkbcomp)))
+ (arguments
+ `(#:phases
+ (alist-replace
+ 'configure
+ (lambda* (#:key inputs #:allow-other-keys #:rest args)
+ (let ((configure (assoc-ref %standard-phases 'configure))
+ (perl-xml-parser (assoc-ref inputs "perl-xml-parser")))
+ ;; FIXME: This should be done more centrally.
+ (setenv "PERL5LIB" (string-append perl-xml-parser "/lib/perl5/site_perl"))
+ (apply configure args)))
+ %standard-phases)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xkill
+ (package
+ (name "xkill")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xkill-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ac110qbb9a4x1dim3vaghvdk3jc708i2p3f4rmag33458khg0xx"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxmu" ,libxmu)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xlsatoms
+ (package
+ (name "xlsatoms")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xlsatoms-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1y9nfl8s7njxbnci8c20j986xixharasgg40vdw92y593j6dk2rv"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxcb" ,libxcb)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xlsclients
+ (package
+ (name "xlsclients")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xlsclients-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1l97j15mg4wfzpm81wlpzagfjff7v4fwn7s2z2rpksk3gfcg7r8w"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxcb" ,libxcb)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xmodmap
+ (package
+ (name "xmodmap")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xmodmap-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1dg47lay4vhrl9mfq3cfc6741a0m2n8wd4ljagd21ix3qklys8pg"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; (define-public xorg-docs
+;; (package
+;; (name "xorg-docs")
+;; (version "1.7")
+;; (source
+;; (origin
+;; (method url-fetch)
+;; (uri (string-append
+;; "mirror://xorg/X11R7.7/src/everything/xorg-docs-"
+;; version
+;; ".tar.bz2"))
+;; (sha256
+;; (base32
+;; "0prphdba6kgr1bxk7r07wxxx6x6pqjw6prr5qclypsb5sf5r3cdr"))))
+;; (build-system gnu-build-system)
+;; (inputs `(("pkg-config" ,pkg-config)))
+;; (home-page "http://www.x.org/wiki/")
+;; (synopsis "xorg implementation of the X Window System")
+;; (description "X.org provides an implementation of the X Window System")
+;; (license none)))
+
+
+(define-public xorg-sgml-doctools
+ (package
+ (name "xorg-sgml-doctools")
+ (version "1.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xorg-sgml-doctools-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0k5pffyi5bx8dmfn033cyhgd3gf6viqj3x769fqixifwhbgy2777"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xpr
+ (package
+ (name "xpr")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xpr-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1dbcv26w2yand2qy7b3h5rbvw1mdmdd57jw88v53sgdr3vrqvngy"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxmu" ,libxmu)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xprop
+ (package
+ (name "xprop")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xprop-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "18zi2any13zlb7f34fzyw6lkiwkd6k2scp3b800a1f4rj0c7m407"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xrandr
+ (package
+ (name "xrandr")
+ (version "1.3.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xrandr-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "03lq1c1q4w5cf2ijs4b34v008lshibha9zv5lw08xpyhk9xgyn8h"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxrender" ,libxrender)
+ ("libxrandr" ,libxrandr)
+ ("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xrdb
+ (package
+ (name "xrdb")
+ (version "1.0.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xrdb-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1dza5a34nj68fzhlgwf18i5bk0n24ig28yihwpjy7vwn57hh2934"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxmu" ,libxmu)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xrefresh
+ (package
+ (name "xrefresh")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xrefresh-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ywxzwa4kmnnmf8idr8ssgcil9xvbhnk155zpsh2i8ay93mh5586"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xset
+ (package
+ (name "xset")
+ (version "1.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xset-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1s61mvscd0h7y6anljarj7nkii6plhs8ndx1fm8b1f1h00a1qdv1"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxmu" ,libxmu)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xsetroot
+ (package
+ (name "xsetroot")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xsetroot-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1bazzsf9sy0q2bj4lxvh1kvyrhmpggzb7jg575i15sksksa3xwc8"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxmu" ,libxmu)
+ ("libxcursor" ,libxcursor)
+ ("xbitmaps" ,xbitmaps)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xtrans
+ (package
+ (name "xtrans")
+ (version "1.2.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xtrans-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "19p1bw3qyn0ia1znx6q3gx92rr9rl88ylrfijjclm8vhpa8i30bz"))))
+ (build-system gnu-build-system)
+ (inputs `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xvinfo
+ (package
+ (name "xvinfo")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xvinfo-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "119rd93d7661ll1rfcdssn78l0b97326smziyr2f5wdwj2hlmiv0"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxext" ,libxext)
+ ("libxv" ,libxv)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xwd
+ (package
+ (name "xwd")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xwd-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0fkg6msy2zg7rda2rpxb7j6vmrdmqmk72xsxnyhz97196ykjnx82"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libxt" ,libxt)
+ ("xproto" ,xproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xwininfo
+ (package
+ (name "xwininfo")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xwininfo-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0fmcr5yl03xw7m8p9h1rk67rrj7gp5x16a547xhmg8idw2f6r9lg"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)
+ ("xproto" ,xproto)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xwud
+ (package
+ (name "xwud")
+ (version "1.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xwud-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ggql6maivah58kwsh3z9x1hvzxm1a8888xx4s78cl77ryfa1cyn"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+
+;; packages of height 1 in the propagated-inputs tree
+
+(define-public fixesproto
+ (package
+ (name "fixesproto")
+ (version "5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/fixesproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1ki4wiq2iivx5g4w5ckzbjbap759kfqd72yg18m3zpbb4hqkybxs"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("xextproto" ,xextproto)))
+ (inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxdamage
+ (package
+ (name "libxdamage")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXdamage-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1a678bwap74sqczbr2z4y4fvbr35km3inkm8bi1igjyk4v46jqdw"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("damageproto" ,damageproto)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxfixes" ,libxfixes)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxext
+ (package
+ (name "libxext")
+ (version "1.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXext-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0ng8clhn7srbkadxjc7ih3z3v27v9ny0aa0dqkgddgxpgrhrq8jn"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("xextproto" ,xextproto)))
+ (inputs
+ `(("libxau" ,libxau)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxinerama
+ (package
+ (name "libxinerama")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXinerama-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1b3aq1762hxzchd9ndavdjlksq93991s0g2z6spf8wl3v0pprrx4"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("xineramaproto" ,xineramaproto)))
+ (inputs
+ `(("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; The package is missing from X11R7.7.
+(define-public libxp
+ (package
+ (name "libxp")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/individual/lib/libXp-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1blwrr5zhmwwy87j0svmhv3hc13acyn5j14n5rv0anz81iav2r3y"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("printproto" ,printproto)))
+ (inputs
+ `(("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxrender
+ (package
+ (name "libxrender")
+ (version "0.9.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXrender-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1rmvja2gkf5v0k2n1bcghw8v98m2kfn3af0rbmsda5dwr69npd7r"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("renderproto" ,renderproto)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxtst
+ (package
+ (name "libxtst")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXtst-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1q750hjplq1rfyxkr4545z1y2a1wfnc828ynvbws7b4jwdk3xsky"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("recordproto" ,recordproto)))
+ (inputs
+ `(("libxi" ,libxi)
+ ("libx11" ,libx11)
+ ("inputproto" ,inputproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxv
+ (package
+ (name "libxv")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXv-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "044hllz013afhzywwpxz007l4zjy99bv9im065rqd30zckmllrjx"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("videoproto" ,videoproto)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public mkfontdir
+ (package
+ (name "mkfontdir")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/mkfontdir-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0c3563kw9fg15dpgx4dwvl12qz6sdqdns1pxa574hc7i5m42mman"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("mkfontscale" ,mkfontscale)))
+ (inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xproto
+ (package
+ (name "xproto")
+ (version "7.0.23")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xproto-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "17lkmi12f89qvg4jj5spqzwzc24fmsqq68dv6kpy7r7b944lmq5d"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("util-macros" ,util-macros))) ; to get util-macros in (almost?) all package inputs
+ (inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+
+;; packages of height 2 in the propagated-inputs tree
+
+(define-public libice
+ (package
+ (name "libice")
+ (version "1.0.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libICE-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "07mp13pb3s73kj7y490gnx619znzwk91mlf8kdw0rzq29ll93a94"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("xproto" ,xproto)))
+ (inputs
+ `(("xtrans" ,xtrans)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxau
+ (package
+ (name "libxau")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXau-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "12d4f7sdv2pjxhk0lcay0pahccddszkw579dc59daqi37r8bllvi"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("xproto" ,xproto)))
+ (inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxaw
+ (package
+ (name "libxaw")
+ (version "1.0.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXaw-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "14ll7ndf5njc30hz2w197qvwp7fqj7y14wq4p1cyxlbipfn79a47"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libxext" ,libxext)
+ ("libxmu" ,libxmu)
+ ("libxpm" ,libxpm)))
+ (inputs
+ `(("libxt" ,libxt)
+ ("xproto" ,xproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxfixes
+ (package
+ (name "libxfixes")
+ (version "5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXfixes-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1qx2rmwhmca2n7rgafy0arp15k5vwhdhhh6v6mx76hlj29328yjk"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("fixesproto" ,fixesproto)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxfont
+ (package
+ (name "libxfont")
+ (version "1.4.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXfont-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0w3irg00k6b6mziddnacln9q2rkf5848b04nvjqwv5bb1fw6zydv"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("fontsproto" ,fontsproto)
+ ("freetype" ,freetype)
+ ("libfontenc" ,libfontenc)
+ ("xproto" ,xproto)))
+ (inputs
+ `(("zlib" ,zlib)
+ ("xtrans" ,xtrans)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxi
+ (package
+ (name "libxi")
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXi-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "029ihw4jq8mng8rx7a3jdvq64jm1zdkqidca93zmxv4jf9yn5qzj"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libxext" ,libxext)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("inputproto" ,inputproto)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxrandr
+ (package
+ (name "libxrandr")
+ (version "1.3.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXrandr-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "10cvv78ws8jznma4s45dzqz0ldcxk30qgsqrc4wxfcsjmcba5b3y"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libxext" ,libxext)
+ ("randrproto" ,randrproto)))
+ (inputs
+ `(("libxrender" ,libxrender)
+ ("xproto" ,xproto)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxvmc
+ (package
+ (name "libxvmc")
+ (version "1.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXvMC-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "18yf6ysc01pqkbk9704914ghalq1sl2hfdjmwggxm8qqhpy8bw18"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libxv" ,libxv)))
+ (inputs
+ `(("xproto" ,xproto)
+ ("libxext" ,libxext)
+ ("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxxf86vm
+ (package
+ (name "libxxf86vm")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXxf86vm-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "117w92xz39rcqcahspi48nc04cc9110x1dycpf3vbcb6p0pifr55"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libxext" ,libxext)
+ ("xf86vidmodeproto" ,xf86vidmodeproto)))
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; package outside the x.org system proper of height 3
+
+(define-public mesa
+ (package
+ (name "mesa")
+ ;; In newer versions (9.0.5 and 9.1 tested), "make" results in an
+ ;; infinite configure loop, see
+ ;; https://bugs.freedesktop.org/show_bug.cgi?id=61527
+ (version "8.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "ftp://ftp.freedesktop.org/pub/mesa/" version
+ "/MesaLib-" version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "0pjs8x51c0i6mawgd4w03lxpyx5fnx7rc8plr8jfsscf9yiqs6si"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("glproto" ,glproto)
+ ("libdrm" ,libdrm-2.4.33)
+ ("libxdamage" ,libxdamage)
+ ("libxxf86vm" ,libxxf86vm)))
+ (inputs
+ `(("bison" ,bison)
+ ("dri2proto" ,dri2proto)
+ ("expat" ,expat)
+ ("flex" ,flex)
+ ("libx11" ,libx11)
+ ("libxfixes" ,libxfixes)
+ ("libxml2" ,libxml2)
+ ("makedepend" ,makedepend)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python)))
+ (arguments
+ `(#:configure-flags
+ `("--with-gallium-drivers=r600,svga,swrast") ; drop r300 from the default list as it requires llvm
+ #:phases
+ (alist-cons-after
+ 'unpack 'remove-symlink
+ (lambda* (#:key #:allow-other-keys)
+ ;; remove dangling symlink to /usr/include/wine/windows
+ (delete-file "src/gallium/state_trackers/d3d1x/w32api"))
+ (alist-replace
+ 'configure
+ (lambda* (#:key inputs #:allow-other-keys #:rest args)
+ (let ((configure (assoc-ref %standard-phases 'configure))
+ (libxml2 (assoc-ref inputs "libxml2")))
+ ;; FIXME: This should be done more centrally.
+ (setenv "PYTHONPATH" (string-append libxml2 "/lib/python2.7/site-packages"))
+ (apply configure args)))
+ %standard-phases))))
+ (home-page "http://mesa3d.org/")
+ (synopsis "Mesa, an OpenGL implementation")
+ (description "Mesa is a free implementation of the OpenGL specification -
+a system for rendering interactive 3D graphics. A variety of device drivers
+allows Mesa to be used in many different environments ranging from software
+emulation to complete hardware acceleration for modern GPUs.")
+ (license license:x11)))
+
+
+
+;; packages of height 3 in the propagated-inputs tree
+
+(define-public libxcb
+ (package
+ (name "libxcb")
+ (version "1.8.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://xcb.freedesktop.org/dist/libxcb-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "03gspxcdl8r7jwbwg7fyp4cc6zic9z91amp4g5z0wwahx48nix6j"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libpthread-stubs" ,libpthread-stubs)
+ ("libxau" ,libxau)
+ ("libxdmcp" ,libxdmcp)))
+ (inputs
+ `(("xcb-proto" ,xcb-proto)
+ ("libxslt" ,libxslt)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public xorg-server
+ (package
+ (name "xorg-server")
+ (version "1.12.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/xorg-server-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1xf57hcq6r17zxyfnx9r1wd0ir1bw13ff8bsiszwrw9jyhi9x7ya"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("dri2proto" ,dri2proto)
+ ("fontsproto" ,fontsproto)
+ ("inputproto" ,inputproto)
+ ("kbproto" ,kbproto)
+ ("libpciaccess" ,libpciaccess)
+ ("pixman" ,pixman)
+ ("randrproto" ,randrproto)
+ ("renderproto" ,renderproto)
+ ("videoproto" ,videoproto)
+ ("xextproto" ,xextproto)
+ ("xineramaproto" ,xineramaproto)
+ ("xproto" ,xproto)))
+ (inputs
+ `(("bigreqsproto" ,bigreqsproto)
+ ("compositeproto" ,compositeproto)
+ ("damageproto" ,damageproto)
+ ("dbus" ,dbus)
+ ("dmxproto" ,dmxproto)
+ ("libdmx" ,libdmx)
+ ("libxau" ,libxau)
+ ("libxaw" ,libxaw)
+ ("libxdmcp" ,libxdmcp)
+ ("libxfixes" ,libxfixes)
+ ("libxfont" ,libxfont)
+ ("libxkbfile" ,libxkbfile)
+ ("libxrender" ,libxrender)
+ ("libxres" ,libxres)
+ ("libxt" ,libxt)
+ ("libxv" ,libxv)
+ ("mesa" ,mesa)
+ ("openssl" ,openssl)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python)
+ ("recordproto" ,recordproto)
+ ("resourceproto" ,resourceproto)
+ ("scrnsaverproto" ,scrnsaverproto)
+ ("xcmiscproto" ,xcmiscproto)
+ ("xf86bigfontproto" ,xf86bigfontproto)
+ ("xf86dgaproto" ,xf86dgaproto)
+ ("xf86driproto" ,xf86driproto)
+ ("xf86vidmodeproto" ,xf86vidmodeproto)
+;; ("xkbutils" ,xkbutils)
+;; ("xkeyboard-config" ,xkeyboard-config)
+ ("xtrans" ,xtrans)
+ ("zlib" ,zlib)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+
+;; packages of height 4 in the propagated-inputs tree
+
+(define-public libx11
+ (package
+ (name "libx11")
+ (version "1.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libX11-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "11jdpl15bxwpwv0knpkh990s8jvlybng3dx477pkrz1bx7byz0n3"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("kbproto" ,kbproto)
+ ("libxcb" ,libxcb)))
+ (inputs
+ `(("inputproto" ,inputproto)
+ ("pkg-config" ,pkg-config)
+ ("xextproto" ,xextproto)
+ ("xtrans" ,xtrans)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+;; packages of height 5 in the propagated-inputs tree
+
+(define-public libxcursor
+ (package
+ (name "libxcursor")
+ (version "1.1.13")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXcursor-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "13xd1dyb06gwdwb0bxb22fkgdlmis6wrljm2xk6fhz0v9bg2g27p"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libx11" ,libx11)
+ ("libxrender" ,libxrender)
+ ("libxfixes" ,libxfixes)
+ ("xproto" ,xproto)))
+ (inputs
+ `(("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
+(define-public libxt
+ (package
+ (name "libxt")
+ (version "1.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://xorg/X11R7.7/src/everything/libXt-"
+ version
+ ".tar.bz2"))
+ (sha256
+ (base32
+ "1g85gwnhs7lg5f01gfi1cpb916xc3spm1fjlv2f4xz2zzk1r7dcd"))))
+ (build-system gnu-build-system)
+ (propagated-inputs
+ `(("libx11" ,libx11)
+ ("libice" ,libice)
+ ("libsm" ,libsm)))
+ (inputs
+ `(("libx11" ,libx11)
+ ("pkg-config" ,pkg-config)))
+ (home-page "http://www.x.org/wiki/")
+ (synopsis "xorg implementation of the X Window System")
+ (description "X.org provides an implementation of the X Window System")
+ (license license:x11)))
+
+
diff --git a/guix/download.scm b/guix/download.scm
index ea00798b4b..689920c3e0 100644
--- a/guix/download.scm
+++ b/guix/download.scm
@@ -105,8 +105,7 @@
"http://mirrors.ircam.fr/pub/apache/"
"http://apache-mirror.rbc.ru/pub/apache/")
(xorg ; from http://www.x.org/wiki/Releases/Download
- "http://xorg.freedesktop.org/releases/" ; main mirrors
- "http://www.x.org/pub/"
+ "http://www.x.org/releases/" ; main mirrors
"ftp://mirror.csclub.uwaterloo.ca/x.org/" ; North America
"ftp://xorg.mirrors.pair.com/"
"http://mirror.csclub.uwaterloo.ca/x.org/"