2013-02-23 19:09:26 +01:00
|
|
|
;;; 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 bison)
|
|
|
|
#:use-module (gnu packages flex)
|
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
#: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)
|
2013-02-25 22:24:25 +01:00
|
|
|
#:use-module (gnu packages python)
|
|
|
|
#:use-module (gnu packages xml))
|
2013-02-23 19:09:26 +01:00
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("fixesproto" ,fixesproto)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public dri2proto
|
|
|
|
(package
|
|
|
|
(name "dri2proto")
|
|
|
|
(version "2.3.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/dri2proto-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("xextproto" ,xextproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-adobe-100dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-adobe-100dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-adobe-100dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-adobe-75dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-adobe-75dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-adobe-75dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-adobe-utopia-100dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-adobe-utopia-100dpi")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-100dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-adobe-utopia-75dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-adobe-utopia-75dpi")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-75dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-adobe-utopia-type1
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-adobe-utopia-type1")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-adobe-utopia-type1-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-alias
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-alias")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-alias-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"16ic8wfwwr3jicaml7b5a0sk6plcgc1kg84w02881yhwmqm3nicb"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-arabic-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-arabic-misc")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-arabic-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1x246dfnxnmflzf0qzy62k8jdpkb6jkgspcjgbk8jcq9lw99npah"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bh-100dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bh-100dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-100dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bh-75dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bh-75dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-75dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bh-lucidatypewriter-100dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bh-lucidatypewriter-100dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-lucidatypewriter-100dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bh-lucidatypewriter-75dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bh-lucidatypewriter-75dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-lucidatypewriter-75dpi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bh-type1
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bh-type1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bitstream-100dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bitstream-100dpi")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bitstream-75dpi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bitstream-75dpi")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-bitstream-type1
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-bitstream-type1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-bh-ttf-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0pyjmc0ha288d4i4j0si4dh3ncf3jiwwjljvddrb0k8v4xiyljqv"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-cronyx-cyrillic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-cronyx-cyrillic")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0ai1v4n61k8j9x2a1knvfbl2xjxk3xxmqaq3p9vpqrspc69k31kf"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontdir" ,mkfontdir)
|
2013-02-23 19:09:26 +01:00
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-cursor-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-cursor-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-cursor-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0dd6vfiagjc4zmvlskrbjz85jfqhf060cpys8j0y1qpcbsrkwdhp"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
2013-02-23 19:09:26 +01:00
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-daewoo-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-daewoo-misc")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-daewoo-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1s2bbhizzgbbbn5wqs3vw53n619cclxksljvm759h9p1prqdwrdw"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-dec-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-dec-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-dec-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0yzza0l4zwyy7accr1s8ab7fjqkpwggqydbm2vc19scdby5xz7g1"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-ibm-type1
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-ibm-type1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-cronyx-cyrillic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-isas-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-isas-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-isas-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0rx8q02rkx673a7skkpnvfkg28i8gmqzgf25s9yi0lar915sn92q"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-jis-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-jis-misc")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-jis-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0rdc3xdz12pnv951538q6wilx8mrdndpkphpbblszsv7nc8cw61b"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-micro-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-micro-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-micro-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1dldxlh54zq1yzfnrh83j5vm0k4ijprrs5yl18gm3n9j1z0q2cws"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-misc-cyrillic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-misc-cyrillic")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-misc-cyrillic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0q2ybxs8wvylvw95j6x9i800rismsmx4b587alwbfqiw6biy63z4"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-misc-ethiopic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-misc-ethiopic")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-misc-ethiopic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"19cq7iq0pfad0nc2v28n681fdq3fcw1l1hzaq0wpkgpx7bc1zjsk"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-misc-meltho
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-misc-meltho")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-misc-meltho-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"148793fqwzrc3bmh2vlw5fdiwjc2n7vs25cic35gfp452czk489p"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-misc-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-misc-misc")
|
|
|
|
(version "1.1.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-misc-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"150pq6n8n984fah34n3k133kggn9v0c5k07igv29sxp1wi07krxq"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("font-util" ,font-util)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-mutt-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-mutt-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-mutt-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"13qghgr1zzpv64m0p42195k1kc77pksiv059fdvijz1n6kdplpxx"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs
|
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-schumacher-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-schumacher-misc")
|
|
|
|
(version "1.1.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-schumacher-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0nkym3n48b4v36y4s927bbkjnsmicajarnf6vlp7wxp0as304i74"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontscale" ,mkfontscale)
|
|
|
|
("mkfontdir" ,mkfontdir)
|
|
|
|
("font-util" ,font-util)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-screen-cyrillic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-screen-cyrillic")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.0.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-screen-cyrillic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0yayf1qlv7irf58nngddz2f1q04qkpr5jwp4aja2j5gyvzl32hl2"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-sony-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-sony-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-sony-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1xfgcx4gsgik5mkgkca31fj3w72jw9iw76qyrajrsz1lp8ka6hr0"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-sun-misc
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-sun-misc")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-sun-misc-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1q6jcqrffg9q5f5raivzwx9ffvf7r11g6g0b125na1bhpz5ly7s8"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-util
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-util")
|
|
|
|
(version "1.3.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-util-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"15cijajwhjzpy3ydc817zz8x5z4gbkyv3fps687jbq544mbfbafz"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-winitzki-cyrillic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-winitzki-cyrillic")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-winitzki-cyrillic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"181n1bgq8vxfxqicmy1jpm1hnr6gwn1kdhl6hr4frjigs1ikpldb"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("mkfontdir" ,mkfontdir)
|
|
|
|
("bdftopcf" ,bdftopcf)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public font-xfree86-type1
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "font-xfree86-type1")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/font-xfree86-type1-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public fontsproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "fontsproto")
|
|
|
|
(version "2.1.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/fontsproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1ab8mbqxdwvdz4k5x4xb9c4n5w7i1xw276cbpk4z7a1nlpjrg746"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public glproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "glproto")
|
|
|
|
(version "1.4.16")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/glproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"13arnb4bz5pn89bxbh3shr8gihkhyznpjnq3zzr05msygwx6dpal"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public iceauth
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "iceauth")
|
|
|
|
(version "1.0.5")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/iceauth-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1aq6v671s2x5rc6zn0rgxb4wddg4vq94mckw3cpwl7ccrjjvd5hl"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libice" ,libice)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public inputproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "inputproto")
|
|
|
|
(version "2.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/inputproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1c5wqamfsd8g5i8kya5pjfmcac8q5zq1l3vclh6p96f24nmicxfy"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public kbproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "kbproto")
|
|
|
|
(version "1.0.6")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/kbproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0yal11hhpiisy3w8wmacsdzzzcnc3xwnswxz8k7zri40xc5aqz03"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
2013-02-25 22:24:25 +01:00
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libapplewm
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libapplewm")
|
|
|
|
(version "1.4.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libAppleWM-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("applewmproto" ,applewmproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libfs
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libfs")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libFS-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"05c3bqgn5m7j4kx8wvy0p36faq6f9jv5yq12m6033m4lflg7cwvh"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xtrans" ,xtrans)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("fontsproto" ,fontsproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libice
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libice")
|
|
|
|
(version "1.0.8")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libICE-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"07mp13pb3s73kj7y490gnx619znzwk91mlf8kdw0rzq29ll93a94"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xtrans" ,xtrans)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xproto" ,xproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libsm
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libsm")
|
|
|
|
(version "1.2.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libSM-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"07bzi6xwlhq36f60qfspjbz0qjj7zcgayi1vp4ihgx34kib1vhck"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xtrans" ,xtrans)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xproto" ,xproto)
|
2013-02-25 22:24:25 +01:00
|
|
|
("util-linux" ,util-linux)
|
|
|
|
("libice" ,libice)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("libice" ,libice)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libwindowswm
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libwindowswm")
|
|
|
|
(version "1.0.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libWindowsWM-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1p0flwb67xawyv6yhri9w17m1i4lji5qnd0gq8v1vsfb8zw7rw15"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xextproto" ,xextproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("windowswmproto" ,windowswmproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libx11
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libx11")
|
|
|
|
(version "1.5.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libX11-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxscrnsaver
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxscrnsaver")
|
|
|
|
(version "1.2.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXScrnSaver-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"07ff4r20nkkrj7h08f9fwamds9b3imj8jz5iz6y38zqw6jkyzwcg"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xextproto" ,xextproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("scrnsaverproto" ,scrnsaverproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxau
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxau")
|
|
|
|
(version "1.0.7")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXau-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"12d4f7sdv2pjxhk0lcay0pahccddszkw579dc59daqi37r8bllvi"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxaw
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxaw")
|
|
|
|
(version "1.0.11")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXaw-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"14ll7ndf5njc30hz2w197qvwp7fqj7y14wq4p1cyxlbipfn79a47"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libxt" ,libxt)
|
|
|
|
("xproto" ,xproto)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libxmu" ,libxmu)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-25 22:24:25 +01:00
|
|
|
(propagated-inputs
|
|
|
|
`(("libxmu" ,libxmu)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxcomposite
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxcomposite")
|
|
|
|
(version "0.4.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXcomposite-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1b8sniijb85v4my6v30ma9yqnwl4hkclci9l1hqxnipfyhl4sa9j"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("compositeproto" ,compositeproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("libxfixes" ,libxfixes)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libxrender" ,libxrender)
|
|
|
|
("xproto" ,xproto)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libxfixes" ,libxfixes)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("fixesproto" ,fixesproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxdamage
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxdamage")
|
|
|
|
(version "1.1.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXdamage-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1a678bwap74sqczbr2z4y4fvbr35km3inkm8bi1igjyk4v46jqdw"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("xextproto" ,xextproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("fixesproto" ,fixesproto)
|
|
|
|
("damageproto" ,damageproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxdmcp
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxdmcp")
|
|
|
|
(version "1.1.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXdmcp-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xproto" ,xproto) ("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("libxau" ,libxau)
|
|
|
|
("xproto" ,xproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-25 22:24:25 +01:00
|
|
|
(propagated-inputs
|
|
|
|
`(("xproto" ,xproto)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxfixes
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxfixes")
|
|
|
|
(version "5.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXfixes-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1qx2rmwhmca2n7rgafy0arp15k5vwhdhhh6v6mx76hlj29328yjk"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
2013-02-25 22:24:25 +01:00
|
|
|
("xextproto" ,xextproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("fixesproto" ,fixesproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
("xtrans" ,xtrans)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("fontsproto" ,fontsproto)
|
|
|
|
("libfontenc" ,libfontenc)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
`(("renderproto" ,renderproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("fontconfig" ,fontconfig)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("fontconfig" ,fontconfig)
|
|
|
|
("freetype" ,freetype)
|
|
|
|
("libxrender" ,libxrender)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public libxi
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "libxi")
|
|
|
|
(version "1.6.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXi-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"029ihw4jq8mng8rx7a3jdvq64jm1zdkqidca93zmxv4jf9yn5qzj"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("xproto" ,xproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("inputproto" ,inputproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("xineramaproto" ,xineramaproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public libxp
|
|
|
|
(package
|
|
|
|
(name "libxp")
|
|
|
|
(version "1.0.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/libXp-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1lj3cjg9ygbmclxvayy5v88kkndpy9jq6y68p13dc5jn01hg5lbi"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxau" ,libxau)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
;; ("printproto" ,printproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
`(("libxt" ,libxt)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public libxrandr
|
|
|
|
(package
|
|
|
|
(name "libxrandr")
|
|
|
|
(version "1.4.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/XqqR7.7/src/everything/libXrandr-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1hzm2ndra4nf8xxzm4lzd225zj05hzbzcq464q2znah15ynd0fh3"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libxrender" ,libxrender)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("renderproto" ,renderproto)
|
|
|
|
("randrproto" ,randrproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("renderproto" ,renderproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("resourceproto" ,resourceproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libsm" ,libsm)
|
|
|
|
("kbproto" ,kbproto)
|
|
|
|
("libice" ,libice)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("libsm" ,libsm)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("libxi" ,libxi)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("recordproto" ,recordproto)
|
|
|
|
("inputproto" ,inputproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("videoproto" ,videoproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs
|
|
|
|
`(("libxv" ,libxv)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("videoproto" ,videoproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public libpthread-stubs
|
|
|
|
(package
|
|
|
|
(name "libpthread-stubs")
|
|
|
|
(version "0.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/libpthread-stubs-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"16bjv3in19l84hbri41iayvvg4ls9gv1ma0x0qlbmwy67i7dbdim"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public libxcb
|
|
|
|
(package
|
|
|
|
(name "libxcb")
|
|
|
|
(version "1.9")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/libxcb-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"15icn78x610dvvgnji6b3pyn8nd88lz68hq0w73pcadf78mycmw8"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libxdmcp" ,libxdmcp)
|
|
|
|
("xcb-proto" ,xcb-proto)
|
|
|
|
("libxau" ,libxau)
|
|
|
|
("libpthread-stubs" ,libpthread-stubs)
|
|
|
|
("libxslt" ,libxslt)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("python" ,python)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
("kbproto" ,kbproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public randrproto
|
|
|
|
(package
|
|
|
|
(name "randrproto")
|
|
|
|
(version "1.4.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/randrproto-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1kq9h93qdnniiivry8jmhlgwn9fbx9xp5r9cmzfihlx5cs62xi45"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
("libsm" ,libsm)
|
|
|
|
("libice" ,libice)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public xbacklight
|
|
|
|
(package
|
|
|
|
(name "xbacklight")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/xbacklight-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"199n9qszjiz82nbjz6ychh0xl15igm535mv0830wk4m59w9xclji"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libxrender" ,libxrender)
|
|
|
|
;; ("xcb-util" ,xcb-util)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public xcb-proto
|
|
|
|
(package
|
|
|
|
(name "xcb-proto")
|
|
|
|
(version "1.8")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://xorg/X11R7.7/src/everything/xcb-proto-"
|
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1c11652h9sjynw3scm1pn5z3a6ci888pq7hij8q5n8qrl33icg93"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("pkg-config" ,pkg-config) ("python" ,python)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public xcursor-themes
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xcursor-themes")
|
|
|
|
(version "1.0.3")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xcursor-themes-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"1is4bak0qkkhv63mfa5l7492r475586y52yzfxyv3psppn662ilr"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("libxcursor" ,libxcursor)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xcursorgen
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xcursorgen")
|
|
|
|
(version "1.0.5")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xcursorgen-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"10f5wk1326mm45gvgpf4m2p0j80fcd0i4c52zikahb91zah72wdw"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("libxcursor" ,libxcursor)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libpng" ,libpng)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xdpyinfo
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xdpyinfo")
|
|
|
|
(version "1.3.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xdpyinfo-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0gypsvpmay3lsh3b1dg29pjxv95pkrr21d4w6ys02mrbld24kvi3"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("libxxf86vm" ,libxxf86vm)
|
|
|
|
;; ("libxxf86misc" ,libxxf86misc)
|
|
|
|
("libxxf86dga" ,libxxf86dga)
|
|
|
|
("libxtst" ,libxtst)
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
("libxinerama" ,libxinerama)
|
|
|
|
("libxi" ,libxi)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libxext" ,libxext)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libxcomposite" ,libxcomposite)
|
|
|
|
("libxcb" ,libxcb)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libx11" ,libx11)
|
2013-02-25 22:24:25 +01:00
|
|
|
("libdmx" ,libdmx)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xdriinfo
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xdriinfo")
|
|
|
|
(version "1.0.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xdriinfo-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"076bjix941znyjmh3j5jjsnhp2gv2iq53d0ks29mvvv87cyy9iim"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(;;("mesa" ,mesa)
|
|
|
|
("glproto" ,glproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("glproto" ,glproto)
|
2013-02-23 19:09:26 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xev
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xev")
|
|
|
|
(version "1.2.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xev-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"13xk5z7vy87rnn4574z0jfzymdivyc7pl4axim81sx0pmdysg1ip"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2013-02-25 22:24:25 +01:00
|
|
|
`(("libxrender" ,libxrender)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("xproto" ,xproto)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xextproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xextproto")
|
|
|
|
(version "7.2.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xextproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"06kdanbnprxvgl56l5h0lqj4b0f1fbb1ndha33mv5wvy802v2lvw"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-evdev
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-evdev")
|
|
|
|
(version "2.7.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-evdev-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-joystick
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-joystick")
|
|
|
|
(version "1.6.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-joystick-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-keyboard
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-keyboard")
|
|
|
|
(version "1.6.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-keyboard-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-mouse
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-mouse")
|
|
|
|
(version "1.7.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-mouse-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-synaptics
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-synaptics")
|
|
|
|
(version "1.6.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-synaptics-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-vmmouse
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-vmmouse")
|
|
|
|
(version "12.8.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-vmmouse-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-input-void
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-input-void")
|
|
|
|
(version "1.4.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-input-void-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-ark
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-ark")
|
|
|
|
(version "0.7.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-ark-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-ast
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-ast")
|
|
|
|
(version "0.93.10")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-ast-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-ati
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-ati")
|
|
|
|
(version "6.14.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-ati-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-cirrus
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-cirrus")
|
|
|
|
(version "1.4.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-cirrus-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-dummy
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-dummy")
|
|
|
|
(version "0.3.5")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-dummy-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-fbdev
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-fbdev")
|
|
|
|
(version "0.4.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-fbdev-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-geode
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-geode")
|
|
|
|
(version "2.11.13")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-geode-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-glide
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-glide")
|
|
|
|
(version "1.2.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-glide"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-glint
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-glint")
|
|
|
|
(version "1.2.7")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-glint-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-i128
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-i128")
|
|
|
|
(version "1.3.5")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-i128-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-intel
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-intel")
|
|
|
|
(version "2.19.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-intel-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-mach64
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-mach64")
|
|
|
|
(version "6.9.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-mach64-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-mga
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-mga")
|
|
|
|
(version "1.5.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-mga-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-neomagic
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-neomagic")
|
|
|
|
(version "1.2.6")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-neomagic-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-newport
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-newport")
|
|
|
|
(version "0.2.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-newport-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-nv
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-nv")
|
|
|
|
(version "2.1.18")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-nv-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-openchrome
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-openchrome")
|
|
|
|
(version "0.2.906")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-openchrome-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-r128
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-r128")
|
|
|
|
(version "6.8.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-r128-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-savage
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-savage")
|
|
|
|
(version "2.3.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-savage-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-siliconmotion
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-siliconmotion")
|
|
|
|
(version "1.7.6")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-siliconmotion-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-sis
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-sis")
|
|
|
|
(version "0.10.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-sis-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-suncg6
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-suncg6")
|
|
|
|
(version "1.1.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-suncg6-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-sunffb
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-sunffb")
|
|
|
|
(version "1.2.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-sunffb-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-tdfx
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-tdfx")
|
|
|
|
(version "1.4.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-tdfx-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-tga
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-tga")
|
|
|
|
(version "1.2.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-tga-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-trident
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-trident")
|
|
|
|
(version "1.3.5")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-trident-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-v4l
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-v4l")
|
|
|
|
(version "0.2.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-v4l-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-vesa
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-vesa")
|
|
|
|
(version "2.3.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-vesa-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-vmware
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-vmware")
|
|
|
|
(version "12.0.2")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-vmware-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
|
|
|
(build-system gnu-build-system)
|
2013-02-23 19:09:26 +01:00
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-voodoo
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-voodoo")
|
|
|
|
(version "1.2.4")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-voodoo-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86-video-wsfb
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86-video-wsfb")
|
|
|
|
(version "0.4.0")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86-video-wsfb-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86bigfontproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86bigfontproto")
|
2013-02-23 19:09:26 +01:00
|
|
|
(version "1.2.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86dgaproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86dgaproto")
|
|
|
|
(version "2.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86dgaproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86driproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86driproto")
|
|
|
|
(version "2.1.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86driproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
(define-public xf86vidmodeproto
|
2013-02-23 19:09:26 +01:00
|
|
|
(package
|
2013-02-25 22:24:25 +01:00
|
|
|
(name "xf86vidmodeproto")
|
|
|
|
(version "2.3.1")
|
2013-02-23 19:09:26 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xf86vidmodeproto-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-02-25 22:24:25 +01:00
|
|
|
"0000000000000000000000000000000000000000000000000000"))))
|
2013-02-23 19:09:26 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("inputproto" ,inputproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("inputproto" ,inputproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(define-public xorg-server
|
|
|
|
(package
|
|
|
|
(name "xorg-server")
|
|
|
|
(version "1.12.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2013-02-25 22:24:25 +01:00
|
|
|
"mirror://xorg/X11R7.7/src/everything/xorg-server-"
|
2013-02-23 19:09:26 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1xscr6rf0q15hv3hmm51xhwk0c0rx7a2swkj14ygp8vb60sprh4a"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("bigreqsproto" ,bigreqsproto)
|
|
|
|
("xtrans" ,xtrans)
|
|
|
|
("xcmiscproto" ,xcmiscproto)
|
|
|
|
("damageproto" ,damageproto)
|
|
|
|
("libxfont" ,libxfont)
|
2013-02-25 22:24:25 +01:00
|
|
|
;; ("pixman" ,pixman)
|
2013-02-23 19:09:26 +01:00
|
|
|
("libxext" ,libxext)
|
|
|
|
("recordproto" ,recordproto)
|
|
|
|
("xf86vidmodeproto" ,xf86vidmodeproto)
|
|
|
|
("libdmx" ,libdmx)
|
|
|
|
("dmxproto" ,dmxproto)
|
|
|
|
("xf86dgaproto" ,xf86dgaproto)
|
|
|
|
("xineramaproto" ,xineramaproto)
|
|
|
|
("resourceproto" ,resourceproto)
|
|
|
|
("scrnsaverproto" ,scrnsaverproto)
|
|
|
|
("compositeproto" ,compositeproto)
|
|
|
|
("xf86driproto" ,xf86driproto)
|
|
|
|
("glproto" ,glproto)
|
|
|
|
("xf86bigfontproto" ,xf86bigfontproto)
|
|
|
|
("dbus" ,dbus)
|
2013-02-25 22:24:25 +01:00
|
|
|
;; ("mesa" ,mesa)
|
|
|
|
;; ("systemd" ,systemd)
|
2013-02-23 19:09:26 +01:00
|
|
|
("zlib" ,zlib)
|
|
|
|
("libxv" ,libxv)
|
|
|
|
("libxt" ,libxt)
|
|
|
|
("libxres" ,libxres)
|
|
|
|
("libxrender" ,libxrender)
|
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libxmu" ,libxmu)
|
|
|
|
("libxkbfile" ,libxkbfile)
|
|
|
|
("libxfixes" ,libxfixes)
|
|
|
|
("libxdmcp" ,libxdmcp)
|
|
|
|
("libxaw" ,libxaw)
|
|
|
|
("libxau" ,libxau)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("openssl" ,openssl)
|
2013-02-25 22:24:25 +01:00
|
|
|
;; ("libdrm" ,libdrm)
|
2013-02-23 19:09:26 +01:00
|
|
|
("renderproto" ,renderproto)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("kbproto" ,kbproto)
|
|
|
|
("dri2proto" ,dri2proto)
|
|
|
|
("randrproto" ,randrproto)
|
|
|
|
("xextproto" ,xextproto)
|
|
|
|
("inputproto" ,inputproto)
|
|
|
|
("libpciaccess" ,libpciaccess)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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
|
2013-02-25 22:24:25 +01:00
|
|
|
`(;;("libxxf86misc" ,libxxf86misc)
|
2013-02-23 19:09:26 +01:00
|
|
|
("xproto" ,xproto)
|
|
|
|
("libxmu" ,libxmu)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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
|
|
|
|
`(("xproto" ,xproto)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|
2013-02-25 22:24:25 +01:00
|
|
|
|
|
|
|
|
2013-02-23 19:09:26 +01:00
|
|
|
(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 #f)
|
|
|
|
(synopsis #f)
|
|
|
|
(description #f)
|
|
|
|
(license #f)))
|