2014-12-02 14:29:01 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
|
2016-11-16 08:14:28 +01:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2014-12-02 14:29:01 +01:00
|
|
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
2016-04-03 13:36:33 +02:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Alex Kost <alezost@gmail.com>
|
2017-01-24 22:53:43 +01:00
|
|
|
;;; Copyright © 2013, 2015, 2017 Ludovic Courtès <ludo@gnu.org>
|
2016-07-29 18:19:49 +02:00
|
|
|
;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org>
|
2015-03-09 03:03:39 +01:00
|
|
|
;;; Copyright © 2015 Alexander I.Grafov <grafov@gmail.com>
|
2015-04-18 22:42:00 +02:00
|
|
|
;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
|
2015-10-10 13:06:39 +02:00
|
|
|
;;; Copyright © 2015 xd1le <elisp.vim@gmail.com>
|
2015-12-10 08:57:57 +01:00
|
|
|
;;; Copyright © 2015 Florian Paul Schmidt <mista.tapas@gmx.net>
|
2016-02-06 00:24:01 +01:00
|
|
|
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
2016-02-27 12:00:20 +01:00
|
|
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
2016-05-27 15:35:47 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-07-07 09:15:42 +02:00
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2016-07-22 10:09:26 +02:00
|
|
|
;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
|
2016-08-31 16:37:18 +02:00
|
|
|
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
2016-11-16 01:14:36 +01:00
|
|
|
;;; Copyright © 2016 Petter <petter@mykolab.ch>
|
2017-03-03 00:22:47 +01:00
|
|
|
;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
|
2014-12-02 14:29:01 +01:00
|
|
|
;;;
|
|
|
|
;;; 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 xdisorg)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2017-03-03 00:22:47 +01:00
|
|
|
#:use-module (guix git-download)
|
2015-03-30 03:34:02 +02:00
|
|
|
#:use-module (guix utils)
|
2016-04-03 13:36:33 +02:00
|
|
|
#:use-module (guix build-system cmake)
|
2014-12-02 14:29:01 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2015-04-18 22:42:00 +02:00
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2015-09-26 18:03:40 +02:00
|
|
|
#:use-module (guix build-system python)
|
2014-12-02 14:29:01 +01:00
|
|
|
#:use-module (gnu packages)
|
gnu: Update module imports for asciidoc and doxygen.
This is a followup to commit 0573a923def01e54bf104e0015ade44ab42f694f.
* gnu/packages/algebra.scm, gnu/packages/bioinformatics.scm,
gnu/packages/fcitx.scm, gnu/packages/fish.scm,
gnu/packages/freedesktop.scm, gnu/packages/game-development.scm,
gnu/packages/gcc.scm, gnu/packages/graphics.scm, gnu/packages/image.scm,
gnu/packages/kodi.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/messaging.scm,
gnu/packages/mpd.scm, gnu/packages/music.scm, gnu/packages/rdf.scm,
gnu/packages/serialization.scm, gnu/packages/version-control.scm,
gnu/packages/web.scm, gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xiph.scm: Change imports of (gnu packages asciidoc) or
(gnu packages doxygen) to (gnu packages documentation).
2016-05-13 02:18:15 +02:00
|
|
|
#:use-module (gnu packages documentation)
|
2016-04-08 17:36:05 +02:00
|
|
|
#:use-module (gnu packages algebra)
|
2014-12-02 14:29:01 +01:00
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages image)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-09-26 18:03:40 +02:00
|
|
|
#:use-module (gnu packages gettext)
|
2016-04-03 13:36:33 +02:00
|
|
|
#:use-module (gnu packages gl)
|
2014-12-04 22:22:04 +01:00
|
|
|
#:use-module (gnu packages glib)
|
2016-07-29 18:19:49 +02:00
|
|
|
#:use-module (gnu packages gnome)
|
2017-02-23 13:47:03 +01:00
|
|
|
#:use-module (gnu packages maths)
|
2016-08-31 16:37:18 +02:00
|
|
|
#:use-module (gnu packages m4)
|
2015-12-06 21:58:03 +01:00
|
|
|
#:use-module (gnu packages ncurses)
|
2014-12-14 10:07:19 +01:00
|
|
|
#:use-module (gnu packages perl)
|
2015-09-26 18:03:40 +02:00
|
|
|
#:use-module (gnu packages python)
|
2015-01-12 21:15:15 +01:00
|
|
|
#:use-module (gnu packages linux)
|
2016-04-08 17:36:05 +02:00
|
|
|
#:use-module (gnu packages gl)
|
2015-03-01 14:12:41 +01:00
|
|
|
#:use-module (gnu packages guile)
|
2015-04-18 22:42:00 +02:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages gtk)
|
2016-05-11 18:24:53 +02:00
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages bison))
|
2014-12-02 14:29:01 +01:00
|
|
|
|
|
|
|
;; packages outside the x.org system proper
|
|
|
|
|
2015-09-26 18:03:40 +02:00
|
|
|
(define-public arandr
|
|
|
|
(package
|
|
|
|
(name "arandr")
|
2016-07-12 08:29:57 +02:00
|
|
|
(version "0.1.9")
|
2015-09-26 18:03:40 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://christian.amsuess.com/tools/" name
|
|
|
|
"/files/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-24 22:53:43 +01:00
|
|
|
"1i3f1agixxbfy4kxikb2b241p7c2lg73cl9wqfvlwz3q6zf5faxv"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Do not record a timestamp and file name in gzipped man
|
|
|
|
;; pages (this is equivalent to 'gzip --no-name'.)
|
|
|
|
'(substitute* "setup.py"
|
|
|
|
(("gzip\\.open\\(gzfile, 'w', 9\\)")
|
|
|
|
"gzip.GzipFile('', 'wb', 9, open(gzfile, 'wb'), 0.)")))))
|
2015-09-26 18:03:40 +02:00
|
|
|
(build-system python-build-system)
|
2016-02-27 12:00:20 +01:00
|
|
|
(arguments
|
|
|
|
`(#:python ,python-2 ;incompatible with python 3
|
|
|
|
#:tests? #f ;no tests
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'make-xrandr-available
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(wrap-program (string-append (assoc-ref outputs "out")
|
|
|
|
"/bin/arandr")
|
|
|
|
`("PATH" ":" prefix (,(string-append (assoc-ref inputs "xrandr")
|
|
|
|
"/bin"))))
|
|
|
|
#t)))))
|
|
|
|
(inputs `(("pygtk" ,python2-pygtk)
|
|
|
|
("xrandr" ,xrandr)))
|
2016-09-25 09:33:02 +02:00
|
|
|
(native-inputs `(("gettext" ,gettext-minimal)
|
gnu: Remove python-setuptools and python2-setuptools from inputs (part 2)
This patch contains the changes where removing setuptools from the inputs
affected some code-lines beside.
* gnu/packages/admin.scm (ansible): Remove all [inputs], [native-inputs] and
[propagated-inputs] where python-setuptools or python2-setuptools are the
sole entries. Remove python-setuptools and python2-setuptools listed on a
line by its own from [inputs], [native-inputs] and [propagated-inputs].
* gnu/packages/backup.scm (duplicity): Likewise.
* gnu/packages/bioinformatics.scm (bamm, python2-pybedtools,
python2-bx-python, python2-dendropy, python-pysam, python2-pysam, clipper,
crossmap, cutadapt, deeptools, grit, idr, python2-warpedlmm,
pbtranscript-tofu, seqmagick): Likewise.
* gnu/packages/docbook.scm (dblatex): Likewise.
* gnu/packages/freedesktop.scm (python-pyxdg, python2-pyxdg): Likewise.
* gnu/packages/lirc.scm (python2-lirc): Likewise.
* gnu/packages/mp3.scm (eyed3): Likewise.
* gnu/packages/nutrition.scm (gourmet): Likewise.
* gnu/packages/openstack.scm (python-hacking, python2-hacking,
python-os-testr, python2-os-testr,
python-stevedore, python2-stevedore,
python-tempest-lib, python2-tempest-lib,
python-oslo.log, python2-oslo.log,
python-keystoneclient, python2-keystoneclient): Likewise.
* gnu/packages/password-utils.scm (assword): Likewise.
* gnu/packages/python.scm (python-passlib, python2-passlib,
python-babel, python2-babel,
python-parse-type,
python-pytest, python2-pytest,
python-scripttest, python2-scripttest,
python-testtools, python2-testtools,
python-testscenarios, python2-testscenarios,
python-subunit, python2-subunit,
python-pbr-0.11,
python-pbr, python2-pbr,
python-testrepository, python2-testrepository,
behave,
python-wheel, python2-wheel,
python-requests, python2-requests,
python-jsonschema, python2-jsonschema,
python-pyjwt, python2-pyjwt,
python-virtualenv, python2-virtualenv,
python-jinja2, python2-jinja2,
python-joblib, python2-joblib,
python-sphinx, python2-sphinx,
python-feedgenerator, python2-feedgenerator,
python-scikit-image, python2-scikit-image,
python-redis, python2-redis,
python2-fastlmm,
python-numpydoc, python2-numpydoc,
python-matplotlib, python2-matplotlib,
python2-pysnptools,
python-rpy2, python2-rpy2,
python-pillow, python2-pillow,
python-pycparser, python2-pycparser,
python-cffi, python2-cffi,
python-cairocffi, python2-cairocffi,
python-drmaa, python2-drmaa,
python-pathpy, python2-pathpy,
python-simplegeneric, python2-simplegeneric,
python-ipython, python2-ipython,
python-apsw, python2-apsw,
python-lxml, python2-lxml,
python-networkx, python2-networkx,
python-pyzmq, python2-pyzmq,
python-mccabe, python2-mccabe,
python-mccabe-0.2.1,
python-flake8, python2-flake8,
python-flake8-2.2.4,
python-mistune, python2-mistune,
python-ptyprocess, python2-ptyprocess,
python-llfuse, python2-llfuse,
python-webob, python2-webob,
python-xlrd, python2-xlrd,
python-tables, python2-tables,
python-pip, python2-pip,
python-libarchive-c, python2-libarchive-c,
python-docopt, python2-docopt,
python-pyrfc3339, python2-pyrfc3339,
python-configobj, python2-configobj,
python-clint, python2-clint,
python-rply, python2-rply,
python2-rpython,
python-widgetsnbextension, python2-widgetsnbextension
jupyter,
python-jupyter-console, python2-jupyter-console,
python-hy, python2-hy,
python-urllib3, python2-urllib3,
python-rsa, python2-rsa,
python-tox, python2-tox,
python2-hypothesis,
python-paste, python2-paste,
python-pastescript, python2-pastescript,
python2-unicodecsv,
python-pkgconfig, python2-pkgconfig,
python2-rope,
python-sqlparse, python2-sqlparse,
python-gevent, python2-gevent,
python-tabulate, python2-tabulate,
python-arrow, python2-arrow,
python-cleo, python2-cleo,
python-fake-factory, python2-fake-factory,
ptpython): Likewise.
* gnu/packages/rdf.scm (python-rdflib, python2-rdflib): Likewise.
* gnu/packages/terminals.scm (asciinema): Likewise.
* gnu/packages/version-control.scm (git-annex-remote-hubic): Likewise.
* gnu/packages/xdisorg.scm (arandr): Likewise.
2016-09-28 13:30:54 +02:00
|
|
|
("python-docutils" ,python2-docutils)))
|
2015-09-26 18:03:40 +02:00
|
|
|
(home-page "https://christian.amsuess.com/tools/arandr/")
|
|
|
|
(synopsis "Another RandR graphical user interface")
|
|
|
|
;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
|
|
|
|
(description "ARandR is designed to provide a simple visual front end for
|
|
|
|
the X11 resize-and-rotate (RandR) extension. Relative monitor positions are
|
|
|
|
shown graphically and can be changed in a drag-and-drop way. Configurations
|
|
|
|
are saved as executable shell scripts which can be loaded without using this
|
|
|
|
program.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2014-12-02 15:06:51 +01:00
|
|
|
(define-public xclip
|
|
|
|
(package
|
|
|
|
(name "xclip")
|
|
|
|
(version "0.12")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-07-21 08:35:30 +02:00
|
|
|
"mirror://sourceforge/" name "/" name "/" version "/"
|
|
|
|
name "-" version ".tar.gz"))
|
2014-12-02 15:06:51 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0ibcf46rldnv0r424qcnai1fa5iq3lm5q5rdd7snsi5sb78gmixp"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f)) ; There is no test suite
|
|
|
|
(inputs `(("libxmu" ,libxmu)
|
|
|
|
("libxt" ,libxt)))
|
|
|
|
(home-page "http://xclip.sourceforge.net/")
|
|
|
|
(synopsis "Command line interface to X11 clipboard")
|
|
|
|
(description "Xclip is a command line interface to the X11 clipboard. It
|
|
|
|
can also be used for copying files, as an alternative to sftp/scp, thus
|
|
|
|
avoiding password prompts when X11 forwarding has already been setup.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2016-05-11 18:24:53 +02:00
|
|
|
(define-public libxkbcommon
|
|
|
|
(package
|
|
|
|
(name "libxkbcommon")
|
2016-07-12 08:34:24 +02:00
|
|
|
(version "0.6.1")
|
2016-05-11 18:24:53 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://xkbcommon.org/download/" name "-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-12 08:34:24 +02:00
|
|
|
"0q47xa1szlxwgvwmhv4b7xwawnykz1hnc431d84nj8dlh2q8f22v"))))
|
2016-05-11 18:24:53 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("xkeyboard-config" ,xkeyboard-config)))
|
|
|
|
(native-inputs
|
|
|
|
`(("bison" ,bison)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-xkb-config-root="
|
|
|
|
(assoc-ref %build-inputs "xkeyboard-config")
|
|
|
|
"/share/X11/xkb")
|
|
|
|
(string-append "--with-x-locale-root="
|
|
|
|
(assoc-ref %build-inputs "libx11")
|
|
|
|
"/share/X11/locale"))))
|
|
|
|
(home-page "http://xkbcommon.org/")
|
|
|
|
(synopsis "Library to handle keyboard descriptions")
|
|
|
|
(description "Xkbcommon is a library to handle keyboard descriptions,
|
|
|
|
including loading them from disk, parsing them and handling their
|
|
|
|
state. It is mainly meant for client toolkits, window systems, and other
|
|
|
|
system applications; currently that includes Wayland, kmscon, GTK+, Qt,
|
|
|
|
Clutter, and more. Despite the name, it is not currently used by anything
|
|
|
|
X11 (yet).")
|
|
|
|
(license (license:x11-style "file://COPYING"
|
|
|
|
"See 'COPYING' in the distribution."))))
|
|
|
|
|
2014-12-14 10:07:19 +01:00
|
|
|
(define-public xdotool
|
|
|
|
(package
|
|
|
|
(name "xdotool")
|
2016-02-06 00:24:01 +01:00
|
|
|
(version "3.20150503.1")
|
2014-12-14 10:07:19 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-02-06 00:24:01 +01:00
|
|
|
"https://github.com/jordansissel/xdotool/releases/download/v"
|
|
|
|
version "/xdotool-" version ".tar.gz"))
|
2014-12-14 10:07:19 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-06 00:24:01 +01:00
|
|
|
"1lcngsw33fy9my21rdiz1gs474bfdqcfxjrnfggbx4aypn1nhcp8"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "xdotool-fix-makefile.patch"))))
|
2014-12-14 10:07:19 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ; Test suite requires a lot of black magic
|
2015-03-16 23:14:16 +01:00
|
|
|
#:phases
|
2016-08-19 22:15:37 +02:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys #:rest args)
|
|
|
|
(setenv "PREFIX" (assoc-ref outputs "out"))
|
|
|
|
(setenv "LDFLAGS"
|
|
|
|
(string-append "-Wl,-rpath="
|
|
|
|
(assoc-ref %outputs "out") "/lib"))
|
|
|
|
(setenv "CC" "gcc"))))))
|
2014-12-14 10:07:19 +01:00
|
|
|
(native-inputs `(("perl" ,perl))) ; for pod2man
|
|
|
|
(inputs `(("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxi" ,libxi)
|
|
|
|
("libxinerama" ,libxinerama)
|
2016-02-06 00:24:01 +01:00
|
|
|
("libxtst" ,libxtst)
|
|
|
|
("libxkbcommon" ,libxkbcommon)))
|
2014-12-14 10:07:19 +01:00
|
|
|
(home-page "http://www.semicomplete.com/projects/xdotool")
|
|
|
|
(synopsis "Fake keyboard/mouse input, window management, and more")
|
|
|
|
(description "Xdotool lets you simulate keyboard input and mouse activity,
|
|
|
|
move and resize windows, etc. It does this using X11's XTEST extension and
|
|
|
|
other Xlib functions. Additionally, you can search for windows and move,
|
|
|
|
resize, hide, and modify window properties like the title. If your window
|
|
|
|
manager supports it, you can use xdotool to switch desktops, move windows
|
|
|
|
between desktops, and change the number of desktops.")
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
2014-12-02 14:29:01 +01:00
|
|
|
(define-public xeyes
|
|
|
|
(package
|
|
|
|
(name "xeyes")
|
|
|
|
(version "1.0.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://xeyes.sourcearchive.com/downloads/1.0.1/xeyes_"
|
|
|
|
version
|
|
|
|
".orig.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"04c3md570j67g55h3bix1qbngcslnq91skli51k3g1avki88zkm9"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libxext" ,libxext)
|
|
|
|
("libxmu" ,libxmu)
|
|
|
|
("libxt" ,libxt)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://xeyes.sourcearchive.com/")
|
|
|
|
(synopsis "Follow-the-mouse X demo")
|
|
|
|
(description "Xeyes is a demo program for x.org. It shows eyes
|
|
|
|
following the mouse.")
|
|
|
|
(license license:x11)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public pixman
|
|
|
|
(package
|
|
|
|
(name "pixman")
|
2016-04-27 15:51:32 +02:00
|
|
|
(version "0.34.0")
|
2015-09-30 17:19:27 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://cairographics.org/releases/pixman-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-11-30 17:58:22 +01:00
|
|
|
"13m842m9ffac3m9r0b4lvwjhwzg3w4353djkjpf00s0wnm4v5di1"))
|
|
|
|
(patches (search-patches "pixman-CVE-2016-5296.patch"))))
|
2014-12-02 14:29:01 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2015-09-30 17:19:27 +02:00
|
|
|
`(("libpng" ,libpng)
|
|
|
|
("zlib" ,zlib)))
|
2014-12-02 14:29:01 +01:00
|
|
|
(native-inputs
|
2015-09-30 17:19:27 +02:00
|
|
|
`(("pkg-config" ,pkg-config)))
|
2014-12-02 14:29:01 +01:00
|
|
|
(home-page "http://www.pixman.org/")
|
|
|
|
(synopsis "Low-level pixel manipulation library")
|
|
|
|
(description "Pixman is a low-level software library for pixel
|
|
|
|
manipulation, providing features such as image compositing and trapezoid
|
|
|
|
rasterisation.")
|
|
|
|
(license license:x11)))
|
|
|
|
|
|
|
|
(define-public libdrm
|
|
|
|
(package
|
|
|
|
(name "libdrm")
|
2016-07-09 14:11:53 +02:00
|
|
|
(version "2.4.68")
|
2014-12-02 14:29:01 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-02-19 14:23:38 +01:00
|
|
|
"https://dri.freedesktop.org/libdrm/libdrm-"
|
2014-12-02 14:29:01 +01:00
|
|
|
version
|
|
|
|
".tar.bz2"))
|
|
|
|
(sha256
|
2016-07-09 14:11:53 +02:00
|
|
|
(base32
|
|
|
|
"1px91j6imaaq2fy8ksvgldmv0cdz3w379jqiciqvqa99jajxjjsv"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "libdrm-symbol-check.patch"))))
|
2014-12-02 14:29:01 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libpciaccess" ,libpciaccess)
|
|
|
|
("libpthread-stubs" ,libpthread-stubs)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://dri.freedesktop.org/wiki/")
|
|
|
|
(synopsis "Direct rendering userspace library")
|
|
|
|
(description "The Direct Rendering Infrastructure, also known as the DRI,
|
|
|
|
is a framework for allowing direct access to graphics hardware under the
|
|
|
|
X Window System in a safe and efficient manner. It includes changes to the
|
|
|
|
X server, to several client libraries, and to the kernel (DRM, Direct
|
|
|
|
Rendering Manager). The most important use for the DRI is to create fast
|
|
|
|
OpenGL implementations providing hardware acceleration for Mesa.
|
|
|
|
Several 3D accelerated drivers have been written to the DRI specification,
|
|
|
|
including drivers for chipsets produced by 3DFX, AMD (formerly ATI), Intel
|
|
|
|
and Matrox.")
|
|
|
|
(license license:x11)))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public mtdev
|
|
|
|
(package
|
|
|
|
(name "mtdev")
|
2016-07-12 08:45:07 +02:00
|
|
|
(version "1.1.5")
|
2014-12-02 14:29:01 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://bitmath.org/code/mtdev/mtdev-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
2016-07-12 08:45:07 +02:00
|
|
|
(base32
|
|
|
|
"0zxs7shzgbalkvlaiibi25bd902rbmkv9n1lww6q8j3ri9qdaxv6"))))
|
2014-12-02 14:29:01 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page "http://bitmath.org/code/mtdev/")
|
|
|
|
(synopsis "Multitouch protocol translation library")
|
|
|
|
(description "Mtdev is a stand-alone library which transforms all
|
|
|
|
variants of kernel MT events to the slotted type B protocol. The events
|
|
|
|
put into mtdev may be from any MT device, specifically type A without
|
|
|
|
contact tracking, type A with contact tracking, or type B with contact
|
|
|
|
tracking.")
|
|
|
|
(license license:x11)))
|
2014-12-08 14:36:03 +01:00
|
|
|
|
|
|
|
(define-public startup-notification
|
|
|
|
(package
|
|
|
|
(name "startup-notification")
|
|
|
|
(version "0.12")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2016-02-19 14:23:38 +01:00
|
|
|
(uri (string-append "https://www.freedesktop.org/software/" name
|
2014-12-08 14:36:03 +01:00
|
|
|
"/releases/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0jmyryrpqb35y9hd5sgxqy2z0r1snw7d3ljw0jak0n0cjdz1yf9w"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("xcb-util" ,xcb-util)))
|
|
|
|
(home-page "http://www.freedesktop.org/wiki/Software/startup-notification/")
|
|
|
|
(synopsis "Application startup notification and feedback library")
|
|
|
|
(description
|
|
|
|
"Startup-notification contains a reference implementation of the startup
|
|
|
|
notification protocol. The reference implementation is mostly under an X Window
|
|
|
|
System style license, and has no special dependencies.")
|
|
|
|
;; Most of the code is provided under x11 license.
|
|
|
|
(license license:lgpl2.0+)))
|
2014-12-04 22:22:04 +01:00
|
|
|
|
|
|
|
(define-public wmctrl
|
|
|
|
(package
|
|
|
|
(name "wmctrl")
|
|
|
|
(version "1.07")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2015-12-26 07:55:14 +01:00
|
|
|
"https://sites.google.com/site/tstyblo/wmctrl/wmctrl-"
|
2014-12-04 22:22:04 +01:00
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "wmctrl-64-fix.patch"))))
|
2014-12-04 22:22:04 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags
|
|
|
|
(list (string-append "--mandir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/man"))))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("libxmu" ,libxmu)
|
|
|
|
("glib" ,glib)))
|
|
|
|
(home-page "http://tomas.styblo.name/wmctrl/")
|
|
|
|
(synopsis "Command-line tool to control X window managers")
|
|
|
|
(description
|
|
|
|
"Wmctrl allows to interact with an X window manager that is compatible
|
|
|
|
with the EWMH/NetWM specification. It can query the window manager for
|
|
|
|
information, and request for certain window management actions (resize and
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 14:16:07 +02:00
|
|
|
move windows, switch between desktops, etc.).")
|
2014-12-04 22:22:04 +01:00
|
|
|
(license license:gpl2+)))
|
2014-12-09 19:23:46 +01:00
|
|
|
|
|
|
|
(define-public scrot
|
|
|
|
(package
|
|
|
|
(name "scrot")
|
|
|
|
(version "0.8")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-05-27 15:49:12 +02:00
|
|
|
(uri (list (string-append
|
|
|
|
"http://linuxbrit.co.uk/downloads/scrot-"
|
|
|
|
version ".tar.gz")
|
|
|
|
(string-append
|
|
|
|
"https://fossies.org/linux/privat/old/scrot-"
|
2016-05-31 21:09:43 +02:00
|
|
|
version ".tar.gz")))
|
2014-12-09 19:23:46 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
;; By default, man and doc are put in PREFIX/{man,doc} instead of
|
|
|
|
;; PREFIX/share/{man,doc}.
|
|
|
|
'(#:configure-flags
|
|
|
|
(list (string-append "--mandir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/man"))
|
2016-05-31 21:11:35 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(doc (string-append out "/share/doc/scrot")))
|
|
|
|
(mkdir-p doc)
|
|
|
|
(zero?
|
|
|
|
(system* "make" "install"
|
|
|
|
(string-append "docsdir=" doc)))))))))
|
2014-12-09 19:23:46 +01:00
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("giblib" ,giblib)))
|
|
|
|
(home-page "http://linuxbrit.co.uk/software/")
|
|
|
|
(synopsis "Command-line screen capture utility for X Window System")
|
|
|
|
(description
|
|
|
|
"Scrot allows to save a screenshot of a full screen, a window or a part
|
|
|
|
of the screen selected by mouse.")
|
|
|
|
;; This license removes a clause about X Consortium from the original
|
|
|
|
;; X11 license.
|
|
|
|
(license (license:x11-style "file://COPYING"
|
|
|
|
"See 'COPYING' in the distribution."))))
|
2014-12-09 19:42:56 +01:00
|
|
|
|
2016-04-03 13:36:33 +02:00
|
|
|
(define-public slop
|
|
|
|
(package
|
|
|
|
(name "slop")
|
2017-03-01 15:54:21 +01:00
|
|
|
(version "5.3.37")
|
2016-04-03 13:36:33 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/naelstrof/slop/archive/v"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-03-01 15:54:21 +01:00
|
|
|
"1p2ih123zkj8rxz8acsxpaim1kq57f4rbq7zqsibafn5rkw5c5is"))))
|
2016-04-03 13:36:33 +02:00
|
|
|
(build-system cmake-build-system)
|
2017-02-23 13:47:03 +01:00
|
|
|
(arguments
|
2017-02-24 11:19:18 +01:00
|
|
|
'(#:tests? #f)) ; no "check" target
|
2016-04-03 13:36:33 +02:00
|
|
|
(inputs
|
2017-02-23 13:47:03 +01:00
|
|
|
`(("glm" ,glm)
|
2016-04-03 13:36:33 +02:00
|
|
|
("libxext" ,libxext)
|
2017-02-24 11:19:18 +01:00
|
|
|
("libxrender" ,libxrender)
|
2016-04-03 13:36:33 +02:00
|
|
|
("mesa" ,mesa)))
|
|
|
|
(home-page "https://github.com/naelstrof/slop")
|
|
|
|
(synopsis "Select a region and print its bounds to stdout")
|
|
|
|
(description
|
|
|
|
"slop (Select Operation) is a tool that queries for a selection from a
|
|
|
|
user and prints the region to stdout. It grabs the mouse and turns it into a
|
|
|
|
crosshair, lets the user click and drag to make a selection (or click on a
|
|
|
|
window) while drawing a pretty box around it, then finally prints the
|
|
|
|
selection's dimensions to stdout.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2016-04-04 18:53:37 +02:00
|
|
|
(define-public maim
|
|
|
|
(package
|
|
|
|
(name "maim")
|
2017-03-03 17:10:30 +01:00
|
|
|
(version "4.4.61")
|
2016-04-04 18:53:37 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/naelstrof/maim/archive/v"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-03-03 17:10:30 +01:00
|
|
|
"14jksv05xyydbpb9v8k3jgq7sl72bh356iapymg02vwg519i1d5k"))))
|
2016-04-04 18:53:37 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
2017-02-23 14:06:19 +01:00
|
|
|
'(#:tests? #f)) ; no "check" target
|
2016-04-04 18:53:37 +02:00
|
|
|
(inputs
|
2017-02-23 14:06:19 +01:00
|
|
|
`(("glm" ,glm)
|
|
|
|
("libjpeg" ,libjpeg-turbo)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libxcomposite" ,libxcomposite)
|
2016-04-04 18:53:37 +02:00
|
|
|
("libxfixes" ,libxfixes)
|
2017-02-23 14:06:19 +01:00
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("mesa" ,mesa)
|
|
|
|
("slop" ,slop)
|
|
|
|
("zlib" ,zlib)))
|
2016-04-04 18:53:37 +02:00
|
|
|
(home-page "https://github.com/naelstrof/maim")
|
|
|
|
(synopsis "Screenshot utility for X Window System")
|
|
|
|
(description
|
|
|
|
"maim (Make Image) is a tool that takes screenshots of your desktop and
|
|
|
|
saves it in any format. Along with a full screen, it allows you to capture a
|
|
|
|
predefined region or a particular window. Also, it makes it possible to
|
|
|
|
include cursor in the resulting image.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2014-12-09 19:42:56 +01:00
|
|
|
(define-public unclutter
|
|
|
|
(package
|
|
|
|
(name "unclutter")
|
|
|
|
(version "8")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://ftp.x.org/contrib/utilities/unclutter-"
|
|
|
|
version ".tar.Z"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0ahrr5z6wxqqfyihm112hnq0859zlxisrb3y5232zav58j6sfmdq"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ; no check target
|
2016-08-19 22:17:48 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
(man1 (string-append out "/share/man/man1")))
|
|
|
|
(mkdir-p bin)
|
|
|
|
(mkdir-p man1)
|
|
|
|
(zero?
|
|
|
|
(system* "make" "install" "install.man"
|
|
|
|
(string-append "BINDIR=" bin)
|
|
|
|
(string-append "MANDIR=" man1)))))))))
|
2014-12-09 19:42:56 +01:00
|
|
|
(inputs `(("libx11" ,libx11)))
|
|
|
|
(home-page "http://ftp.x.org/contrib/utilities/")
|
|
|
|
(synopsis "Hide idle mouse cursor")
|
|
|
|
(description
|
|
|
|
"Unclutter is a program which runs permanently in the background of an
|
|
|
|
X11 session. It checks on the X11 pointer (cursor) position every few
|
|
|
|
seconds, and when it finds it has not moved (and no buttons are pressed
|
|
|
|
on the mouse, and the cursor is not in the root window) it creates a
|
|
|
|
small sub-window as a child of the window the cursor is in. The new
|
|
|
|
window installs a cursor of size 1x1 but a mask of all 0, i.e. an
|
|
|
|
invisible cursor. This allows you to see all the text in an xterm or
|
|
|
|
xedit, for example. The human factors crowd would agree it should make
|
|
|
|
things less distracting.")
|
|
|
|
(license license:public-domain)))
|
2015-01-12 21:15:15 +01:00
|
|
|
|
|
|
|
(define-public xlockmore
|
|
|
|
(package
|
|
|
|
(name "xlockmore")
|
2016-05-27 15:35:47 +02:00
|
|
|
(version "5.47")
|
2015-01-12 21:15:15 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-12-26 08:17:46 +01:00
|
|
|
(uri (list (string-append
|
|
|
|
"http://www.tux.org/~bagleyd/xlock/xlockmore-"
|
|
|
|
version ".tar.xz")
|
|
|
|
(string-append
|
|
|
|
"http://www.tux.org/~bagleyd/xlock/xlockmore-old"
|
|
|
|
"/xlockmore-" version
|
2016-05-27 15:35:47 +02:00
|
|
|
"/xlockmore-" version ".tar.xz")))
|
2015-01-12 21:15:15 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-05-27 15:35:47 +02:00
|
|
|
"138d79b8zc2hambbr9fnxp3fhihlcljgqns04zf0kv2f53pavqwl"))))
|
2015-01-12 21:15:15 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags (list (string-append "--enable-appdefaultdir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/X11/app-defaults"))
|
|
|
|
#:tests? #f)) ;no such thing as a test suite
|
|
|
|
(inputs
|
|
|
|
`(("libX11" ,libx11)
|
|
|
|
("libXext" ,libxext)
|
|
|
|
("libXt" ,libxt)
|
|
|
|
("linux-pam" ,linux-pam)))
|
|
|
|
(home-page "http://www.tux.org/~bagleyd/xlockmore.html")
|
|
|
|
(synopsis "Screen locker for the X Window System")
|
|
|
|
(description
|
|
|
|
"XLockMore is a classic screen locker and screen saver for the
|
|
|
|
X Window System.")
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 19:26:34 +01:00
|
|
|
(license (license:non-copyleft #f "See xlock.c.")
|
2016-05-27 15:35:47 +02:00
|
|
|
))) ; + GPLv2 in modes/glx/biof.c.
|
2015-02-11 20:20:00 +01:00
|
|
|
|
|
|
|
(define-public xosd
|
|
|
|
(package
|
|
|
|
(name "xosd")
|
|
|
|
(version "2.2.14")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-07-21 08:35:30 +02:00
|
|
|
"mirror://sourceforge/libxosd/libxosd/xosd-" version "/"
|
|
|
|
name "-" version ".tar.gz"))
|
2015-02-11 20:20:00 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags
|
|
|
|
(list (string-append "--mandir=" %output "/share/man"))))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("libxt" ,libxt)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxinerama" ,libxinerama)))
|
gnu: Use HTTPS for all sourceforge.net home pages.
* gnu/packages/admin.scm (mingetty, clusterssh)[home-page]: Use HTTPS.
* gnu/packages/audio.scm (libbs2b, soxr)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (bless)[home-page]: Likewise.
* gnu/packages/display-managers.scm (slim)[home-page]: Likewise.
* gnu/packages/games.scm (extremetuxracer)[home-page]: Likewise.
* gnu/packages/ghostscript.scm (gs-fonts)[home-page]: Likewise.
* gnu/packages/haskell.scm (ghc-regex-base, ghc-regex-posix,
ghc-regex-compat)[home-page]: Likewise.
* gnu/packages/image.scm (imlib2)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (librevenge, libcmis, libodfgen, libmwaw)
[home-page]: Likewise.
* gnu/packages/linux.scm (hdparm, acpid, libavc1394, rng-tools)
[home-page]: Likewise.
* gnu/packages/mail.scm (esmtp)[home-page]: Likewise.
* gnu/packages/mp3.scm (ripperx)[home-page]: Likewise.
* gnu/packages/onc-rpc.scm (libtirpc)[home-page]: Likewise.
* gnu/packages/perl.scm (perl-czplib)[home-page]: Likewise.
* gnu/packages/python.scm (python-pyasn1-modules)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (xosd)[home-page]: Likewise.
2017-01-04 01:30:46 +01:00
|
|
|
(home-page "https://sourceforge.net/projects/libxosd/")
|
2015-02-11 20:20:00 +01:00
|
|
|
(synopsis "X On Screen Display")
|
|
|
|
(description
|
|
|
|
"XOSD provides a C library and a simple utility (osd_cat) for displaying
|
|
|
|
transparent text on your screen.")
|
|
|
|
(license license:gpl2+)))
|
2015-03-01 14:12:41 +01:00
|
|
|
|
|
|
|
(define-public xbindkeys
|
|
|
|
(package
|
|
|
|
(name "xbindkeys")
|
|
|
|
(version "1.8.6")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
;; Download from the savannah mirror list fails
|
|
|
|
(uri (string-append
|
|
|
|
"http://www.nongnu.org/xbindkeys/xbindkeys-"
|
|
|
|
version
|
|
|
|
".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"060df6d8y727jp1inp7blp44cs8a7jig7vcm8ndsn6gw36z1h3bc"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("guile" ,guile-2.0)))
|
|
|
|
(home-page "http://www.nongnu.org/xbindkeys/")
|
|
|
|
(synopsis "Associate a combination of keys with a shell command")
|
|
|
|
(description
|
|
|
|
"XBindKeys is a program that allows you to launch shell commands with
|
|
|
|
your keyboard or your mouse under the X Window System. It links commands to
|
|
|
|
keys or mouse buttons, using a configuration file. It's independent of the
|
|
|
|
window manager and can capture all keyboard keys (ex: Power, Wake...). It
|
|
|
|
optionally supports a Guile-based configuration file layout, which enables you
|
|
|
|
to access all XBindKeys internals, so you can have key combinations, double
|
|
|
|
clicks or timed double clicks take actions. Also all functions that work in
|
|
|
|
Guile will work for XBindKeys.")
|
|
|
|
(license license:gpl2+)))
|
2015-03-09 03:03:39 +01:00
|
|
|
|
2015-10-10 13:06:39 +02:00
|
|
|
(define-public sxhkd
|
|
|
|
(package
|
|
|
|
(name "sxhkd")
|
2016-07-12 08:59:10 +02:00
|
|
|
(version "0.5.6")
|
2015-10-10 13:06:39 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/baskerville/sxhkd/archive/"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-12 08:59:10 +02:00
|
|
|
"15grmzpxz5fqlbfg2slj7gb7r6nzkvjmflmbkqx7mlby9pm6wdkj"))))
|
2015-10-10 13:06:39 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("asciidoc" ,asciidoc)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("xcb-util" ,xcb-util)
|
|
|
|
("xcb-util-keysyms" ,xcb-util-keysyms)
|
|
|
|
("xcb-util-wm" ,xcb-util-wm)))
|
|
|
|
(arguments
|
|
|
|
'(#:phases (alist-delete 'configure %standard-phases)
|
|
|
|
#:tests? #f ; no check target
|
|
|
|
#:make-flags (list "CC=gcc"
|
|
|
|
(string-append "PREFIX=" %output))))
|
|
|
|
(home-page "https://github.com/baskerville/sxhkd")
|
|
|
|
(synopsis "Simple X hotkey daemon")
|
|
|
|
(description "sxhkd is a simple X hotkey daemon with a powerful and
|
|
|
|
compact configuration syntax.")
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
2015-03-09 03:03:39 +01:00
|
|
|
(define-public rxvt-unicode
|
|
|
|
(package
|
|
|
|
(name "rxvt-unicode")
|
2016-07-07 09:15:42 +02:00
|
|
|
(version "9.22")
|
2015-12-06 21:58:03 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-02-19 07:44:04 +01:00
|
|
|
(uri (string-append "http://dist.schmorp.de/rxvt-unicode/Attic/"
|
2015-12-06 21:58:03 +01:00
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-07-07 09:15:42 +02:00
|
|
|
"1pddjn5ynblwfrdmskylrsxb9vfnk3w4jdnq2l8xn2pspkljhip9"))))
|
2015-03-09 03:03:39 +01:00
|
|
|
(build-system gnu-build-system)
|
2015-12-06 21:58:03 +01:00
|
|
|
(arguments
|
|
|
|
;; This sets the destination when installing the necessary terminal
|
|
|
|
;; capability data, which are not provided by 'ncurses'. See
|
|
|
|
;; https://lists.gnu.org/archive/html/bug-ncurses/2009-10/msg00031.html
|
|
|
|
'(#:make-flags (list (string-append "TERMINFO="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/terminfo"))))
|
2015-03-09 03:03:39 +01:00
|
|
|
(inputs
|
|
|
|
`(("libXft" ,libxft)
|
|
|
|
("libX11" ,libx11)))
|
|
|
|
(native-inputs
|
2015-12-06 21:58:03 +01:00
|
|
|
`(("ncurses" ,ncurses) ;trigger the installation of terminfo data
|
|
|
|
("perl" ,perl)
|
2015-03-09 03:03:39 +01:00
|
|
|
("pkg-config" ,pkg-config)))
|
2015-12-06 21:58:03 +01:00
|
|
|
;; FIXME: This should only be located in 'ncurses'. Nonetheless it is
|
|
|
|
;; provided for usability reasons. See <https://bugs.gnu.org/22138>.
|
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "TERMINFO_DIRS")
|
|
|
|
(files '("share/terminfo")))))
|
2015-03-09 03:03:39 +01:00
|
|
|
(home-page "http://software.schmorp.de/pkg/rxvt-unicode.html")
|
|
|
|
(synopsis "Rxvt clone with XFT and unicode support")
|
|
|
|
(description "Rxvt-unicode (urxvt) is a colour vt102 terminal emulator
|
|
|
|
intended as an xterm replacement for users who do not require features such as
|
|
|
|
Tektronix 4014 emulation and toolkit-style configurability. It supports
|
|
|
|
unicode, XFT and may be extended with Perl plugins. It also comes with a
|
|
|
|
client/daemon pair that lets you open any number of terminal windows from
|
|
|
|
within a single process.")
|
|
|
|
(license license:gpl3+)))
|
2015-03-16 23:14:16 +01:00
|
|
|
|
|
|
|
(define-public xcape
|
|
|
|
(package
|
|
|
|
(name "xcape")
|
2016-12-20 03:56:15 +01:00
|
|
|
(version "1.2")
|
2015-03-16 23:14:16 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/alols/" name
|
|
|
|
"/archive/v" version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-12-20 03:56:15 +01:00
|
|
|
"0898zc3vwxia00h9kfknpf7jygxgwggrx8v5mxc31w4lzn2dhzm2"))))
|
2015-03-16 23:14:16 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no check target
|
|
|
|
#:phases (alist-delete 'configure %standard-phases) ; no configure script
|
|
|
|
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
|
|
|
"MANDIR=/share/man/man1"
|
|
|
|
"CC=gcc")))
|
|
|
|
(inputs
|
|
|
|
`(("libxtst" ,libxtst)
|
|
|
|
("libx11" ,libx11)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://github.com/alols/xcape")
|
|
|
|
(synopsis "Use a modifier key in X.org as another key")
|
|
|
|
(description
|
|
|
|
"This utility for X.org allows to use modifier key as another key when
|
|
|
|
pressed and released on its own. The default behaviour is to generate the
|
|
|
|
Escape key when Left Control is pressed and released on its own.")
|
|
|
|
(license license:gpl3+)))
|
2015-04-18 22:42:00 +02:00
|
|
|
|
|
|
|
(define-public libwacom
|
|
|
|
(package
|
|
|
|
(name "libwacom")
|
2017-02-13 22:03:17 +01:00
|
|
|
(version "0.23")
|
2015-04-18 22:42:00 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/linuxwacom/libwacom/"
|
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-02-13 22:03:17 +01:00
|
|
|
"0qiikh95b9crybkwgcbbv9y80hb7lsbvvmvaia4gbgbdyagwb2m0"))))
|
2015-04-18 22:42:00 +02:00
|
|
|
(build-system glib-or-gtk-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
2016-02-18 20:58:18 +01:00
|
|
|
`(("gtk+" ,gtk+)
|
2015-10-27 10:05:36 +01:00
|
|
|
("libgudev" ,libgudev)
|
2015-04-18 22:42:00 +02:00
|
|
|
("eudev" ,eudev)
|
|
|
|
("libxml2" ,libxml2)))
|
2016-02-18 20:58:18 +01:00
|
|
|
(propagated-inputs
|
|
|
|
;; libwacom includes header files that include GLib, and libinput uses
|
|
|
|
;; those header files.
|
|
|
|
`(("glib" ,glib)))
|
2015-04-18 22:42:00 +02:00
|
|
|
(home-page "http://linuxwacom.sourceforge.net/")
|
|
|
|
(synopsis "Helper library for Wacom tablet settings")
|
|
|
|
(description
|
2016-02-18 20:58:18 +01:00
|
|
|
"Libwacom is a library to help implement Wacom tablet settings. It is
|
|
|
|
intended to be used by client-programs that need model identification. It is
|
|
|
|
already being used by the gnome-settings-daemon and the GNOME Control Center
|
|
|
|
Wacom tablet applet.")
|
2015-04-18 22:42:00 +02:00
|
|
|
(license license:x11)))
|
2015-04-18 22:42:24 +02:00
|
|
|
|
|
|
|
(define-public xf86-input-wacom
|
|
|
|
(package
|
|
|
|
(name "xf86-input-wacom")
|
2017-01-26 16:30:52 +01:00
|
|
|
(version "0.34.0")
|
2015-04-18 22:42:24 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"mirror://sourceforge/linuxwacom/xf86-input-wacom/"
|
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-26 16:30:52 +01:00
|
|
|
"0idhkigl0pnyp08sqm6bqfb4h20v6rjrb71z1gdv59gk7d7qwpgi"))))
|
2015-04-18 22:42:24 +02:00
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-sdkdir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/include/xorg")
|
|
|
|
(string-append "--with-xorg-conf-dir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/share/X11/xorg.conf.d"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("xorg-server" ,xorg-server)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("libxinerama" ,libxinerama)
|
|
|
|
("libxi" ,libxi)
|
|
|
|
("eudev" ,eudev)))
|
|
|
|
(home-page "http://linuxwacom.sourceforge.net/")
|
|
|
|
(synopsis "Wacom input driver for X")
|
|
|
|
(description
|
|
|
|
"The xf86-input-wacom driver is the wacom-specific X11 input driver for
|
|
|
|
the X.Org X Server version 1.7 and later (X11R7.5 or later).")
|
|
|
|
(license license:x11)))
|
2015-12-10 08:57:57 +01:00
|
|
|
|
|
|
|
(define-public redshift
|
|
|
|
(package
|
|
|
|
(name "redshift")
|
2016-02-15 23:33:55 +01:00
|
|
|
(version "1.11")
|
2015-12-10 08:57:57 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://github.com/jonls/redshift/"
|
|
|
|
"releases/download/v" version
|
|
|
|
"/redshift-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-15 23:33:55 +01:00
|
|
|
"0ngkwj7rg8nfk806w0sg443w6wjr91xdc0zisqfm5h2i77wm1qqh"))))
|
2015-12-10 08:57:57 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("intltool" ,intltool)))
|
|
|
|
(inputs
|
|
|
|
`(("libdrm" ,libdrm)
|
|
|
|
("libx11" ,libx11)
|
|
|
|
("libxcb" ,libxcb)
|
gnu: Fix misplaced commas (unquote).
Fix many occurrences of comma (unquote) being placed immediately after the
previous list item, e.g. ("ncurses", ncurses) in the inputs.
* gnu/packages/base.scm (patch, gnu-make),
gnu/packages/bioinformatics.scm (hmmer),
gnu/packages/bittorrent.scm (aria2),
gnu/packages/compression.scm (pbzip2),
gnu/packages/databases.scm (recutils),
gnu/packages/fonts.scm (font-terminus),
gnu/packages/freedesktop.scm (xdg-utils, elogind),
gnu/packages/games.scm (gnujump),
gnu/packages/gnome.scm (libidl, gnumeric, eog, gedit),
gnu/packages/gnunet.scm (gnunet),
gnu/packages/gnuzilla.scm (mozjs, nspr),
gnu/packages/gtk.scm (gtksourceview, gdk-pixbuf),
gnu/packages/lua.scm (lua),
gnu/packages/openstack.scm (python-swiftclient),
gnu/packages/perl.scm (perl-json-any),
gnu/packages/polkit.scm (polkit-qt),
gnu/packages/python.scm (wrap-python3, python-oauthlib)
(python-mccabe-0.2.1, python-contextlib2, python2-rauth),
gnu/packages/qt.scm (qtkeychain),
gnu/packages/ruby.scm (ruby-nokogiri),
gnu/packages/screen.scm (screen),
gnu/packages/ssh.scm (libssh),
gnu/packages/video.scm (ffmpeg, mplayer),
gnu/packages/vim.scm (vim),
gnu/packages/xdisorg.scm (redshift),
gnu/packages/xfce.scm (xfce4-panel, xfce4-settings),
gnu/packages/xnee.scm (xnee),
gnu/packages/xorg.scm (font-adobe100dpi, font-adobe75dpi),
gnu/packages/zsh.scm (zsh): Fix misplaced commas (unquote).
2016-02-27 14:37:28 +01:00
|
|
|
("libxxf86vm" ,libxxf86vm)
|
2015-12-10 08:57:57 +01:00
|
|
|
("glib" ,glib))) ;for Geoclue2 support
|
|
|
|
(home-page "https://github.com/jonls/redshift")
|
|
|
|
(synopsis "Adjust the color temperature of your screen")
|
|
|
|
(description
|
|
|
|
"Redshift adjusts the color temperature according to the position of the
|
|
|
|
sun. A different color temperature is set during night and daytime. During
|
|
|
|
twilight and early morning, the color temperature transitions smoothly from
|
|
|
|
night to daytime temperature to allow your eyes to slowly adapt. At night the
|
|
|
|
color temperature should be set to match the lamps in your room.")
|
|
|
|
(license license:gpl3+)))
|
2016-04-08 17:36:05 +02:00
|
|
|
|
|
|
|
(define-public xscreensaver
|
|
|
|
(package
|
|
|
|
(name "xscreensaver")
|
2017-01-16 21:54:15 +01:00
|
|
|
(version "5.36")
|
2016-04-08 17:36:05 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append "https://www.jwz.org/xscreensaver/xscreensaver-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-16 21:54:15 +01:00
|
|
|
"0v60mdhvv42jla5hljp77igng11kxpah5fs9j7ci65kz0hw552vb"))))
|
2016-04-08 17:36:05 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no check target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'adjust-gtk-resource-paths
|
|
|
|
(lambda _
|
|
|
|
(substitute* '("driver/Makefile.in" "po/Makefile.in.in")
|
|
|
|
(("@GTK_DATADIR@") "@datadir@")
|
|
|
|
(("@PO_DATADIR@") "@datadir@")))))
|
|
|
|
#:configure-flags '("--with-pam" "--with-proc-interrupts"
|
|
|
|
"--without-readdisplay")
|
|
|
|
#:make-flags (list (string-append "AD_DIR="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/usr/lib/X11/app-defaults"))))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("intltool" ,intltool)))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("libxext" ,libxext)
|
|
|
|
("libxi" ,libxi)
|
|
|
|
("libxt" ,libxt)
|
|
|
|
("libxft" ,libxft)
|
|
|
|
("libxmu" ,libxmu)
|
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libglade" ,libglade)
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
("libsm" ,libsm)
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
("linux-pam" ,linux-pam)
|
|
|
|
("pango" ,pango)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("perl" ,perl)
|
|
|
|
("cairo" ,cairo)
|
|
|
|
("bc" ,bc)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("glu" ,glu)
|
|
|
|
("glib" ,glib)))
|
|
|
|
(home-page "https://www.jwz.org/xscreensaver/")
|
|
|
|
(synopsis "Classic screen saver suite supporting screen locking")
|
|
|
|
(description
|
|
|
|
"xscreensaver is a popular screen saver collection with many entertaining
|
|
|
|
demos. It also acts as a nice screen locker.")
|
|
|
|
;; xscreensaver doesn't have a single copyright file and instead relies on
|
|
|
|
;; source comment headers, though most files have the same lax
|
|
|
|
;; permissions. To reduce complexity, we're pointing at Debian's
|
|
|
|
;; breakdown of the copyright information.
|
|
|
|
(license (license:non-copyleft
|
|
|
|
(string-append
|
|
|
|
"http://metadata.ftp-master.debian.org/changelogs/"
|
2017-02-04 10:45:41 +01:00
|
|
|
"/main/x/xscreensaver/xscreensaver_5.36-1_copyright")))))
|
2016-05-26 02:56:19 +02:00
|
|
|
|
2016-07-22 10:09:26 +02:00
|
|
|
(define-public xdpyprobe
|
|
|
|
(package
|
|
|
|
(name "xdpyprobe")
|
|
|
|
(version "0.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/alezost/" name
|
|
|
|
"/releases/download/v" version
|
|
|
|
"/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1h09wd2qcg08rj5hcakvdh9q01hkrj8vxly94ax3ch2x06lm0zq8"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)))
|
|
|
|
(home-page "https://github.com/alezost/xdpyprobe")
|
|
|
|
(synopsis "Probe X server for connectivity")
|
|
|
|
(description
|
|
|
|
"Xdpyprobe is a tiny C program whose only purpose is to probe a
|
|
|
|
connectivity of the X server running on a particular @code{DISPLAY}.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2016-05-26 02:56:19 +02:00
|
|
|
(define-public rofi
|
|
|
|
(package
|
|
|
|
(name "rofi")
|
2017-01-10 22:35:05 +01:00
|
|
|
(version "1.3.1")
|
2016-05-26 02:56:19 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/DaveDavenport/rofi/"
|
|
|
|
"releases/download/"
|
|
|
|
version "/rofi-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-01-10 22:35:05 +01:00
|
|
|
"1s47biv6d68nblpz6d3aklsar1xxxcilzr4y77v3hz2w1wbz2b5m"))))
|
2016-05-26 02:56:19 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2016-08-31 16:45:06 +02:00
|
|
|
`(("pango" ,pango)
|
2016-05-26 02:56:19 +02:00
|
|
|
("cairo" ,cairo)
|
|
|
|
("glib" ,glib)
|
|
|
|
("startup-notification" ,startup-notification)
|
|
|
|
("libxkbcommon" ,libxkbcommon)
|
|
|
|
("libxcb" ,libxcb)
|
|
|
|
("xcb-util" ,xcb-util)
|
2016-08-31 16:45:06 +02:00
|
|
|
("xcb-util-xrm" ,xcb-util-xrm)
|
2016-05-26 02:56:19 +02:00
|
|
|
("xcb-util-wm" ,xcb-util-wm)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'adjust-tests
|
|
|
|
(lambda _
|
|
|
|
(substitute* '("test/helper-expand.c")
|
|
|
|
(("~root") "/root")
|
|
|
|
(("~") "")
|
|
|
|
(("g_get_home_dir \\(\\)") "\"/\"")))))))
|
|
|
|
(home-page "https://davedavenport.github.io/rofi/")
|
|
|
|
(synopsis "Application Launcher")
|
|
|
|
(description "Rofi is a minimalist Application Launcher. It memorizes which
|
|
|
|
applications you regularily use and also allows you to search for an application
|
|
|
|
by name.")
|
|
|
|
(license license:expat)))
|
2016-07-29 18:19:49 +02:00
|
|
|
|
|
|
|
(define-public tint2
|
|
|
|
(package
|
|
|
|
(name "tint2")
|
|
|
|
(version "0.12.11")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://gitlab.com/o9000/" name
|
|
|
|
"/repository/archive.tar.gz?ref=" version))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0dv7zaj2ahnfclnwnwcz9arrvzxn65yy29z7fqdgifdh3jk1kl2h"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ;no test target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fix-installation-prefix
|
|
|
|
(lambda _
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
(("/etc") "${CMAKE_INSTALL_PREFIX}/etc")))))))
|
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+-2)
|
|
|
|
("imlib2" ,imlib2)
|
|
|
|
("librsvg" ,librsvg)
|
|
|
|
("libxcomposite" ,libxcomposite)
|
|
|
|
("libxdamage" ,libxdamage)
|
|
|
|
("libxft" ,libxft)
|
|
|
|
("libxinerama" ,libxinerama)
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
("startup-notification" ,startup-notification)))
|
|
|
|
(native-inputs
|
2016-09-25 09:33:02 +02:00
|
|
|
`(("gettext" ,gettext-minimal)
|
2016-07-29 18:19:49 +02:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "https://gitlab.com/o9000/tint2")
|
|
|
|
(synopsis "Lightweight task bar")
|
|
|
|
(description
|
|
|
|
"Tint2 is a simple task bar made for modern X window managers. It was
|
|
|
|
specifically made for Openbox but it should also work with other window
|
|
|
|
managers (GNOME, KDE, XFCE etc.).
|
|
|
|
|
|
|
|
The taskbar includes transparency and color settings for the font, icons,
|
|
|
|
border, and background. It also supports multihead setups, customized mouse
|
|
|
|
actions, a built-in clock, a battery monitor and a system tray.")
|
|
|
|
(license license:gpl2)))
|
2016-08-31 16:37:18 +02:00
|
|
|
|
2017-03-03 00:22:47 +01:00
|
|
|
(define-public dzen
|
|
|
|
(let ((commit "488ab66019f475e35e067646621827c18a879ba1")
|
|
|
|
(revision "1"))
|
|
|
|
(package
|
|
|
|
(name "dzen")
|
|
|
|
(version (string-append "0.9.5-" ; Taken from `config.mk`.
|
|
|
|
revision "." (string-take commit 7)))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/robm/dzen.git")
|
|
|
|
(commit commit)))
|
|
|
|
(file-name (string-append name "-" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0y47d6ii87vf4a517gi4fh0yl06f8b085sra77immnsasbq9pxnw"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; No test suite.
|
|
|
|
#:make-flags ; Replacement for `config.mk`.
|
|
|
|
(list
|
|
|
|
(string-append "VERSION = " ,version)
|
|
|
|
(string-append "PREFIX = " %output)
|
|
|
|
"MANPREFIX = ${PREFIX}/share/man"
|
|
|
|
"INCS = -I."
|
|
|
|
"LIBS = -lc -lX11 -lXinerama -lXpm $(shell pkg-config --libs xft)"
|
|
|
|
"CFLAGS = -Wall -Os ${INCS} -DVERSION=\\\"${VERSION}\\\"\
|
|
|
|
-DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT $(shell pkg-config --cflags xft)"
|
|
|
|
"LDFLAGS = ${LIBS}"
|
|
|
|
"CC = gcc"
|
|
|
|
"LD = ${CC}")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure) ; No configuration script.
|
|
|
|
;; Use own make-flags instead of `config.mk`.
|
|
|
|
(add-before 'build 'dont-include-config-mk
|
|
|
|
(lambda _
|
|
|
|
(substitute* "Makefile" (("include config.mk") ""))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
|
|
|
("libxft" ,libxft)
|
|
|
|
("libxpm" ,libxpm)
|
|
|
|
("libxinerama" ,libxinerama)))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(synopsis "General purpose messaging, notification and menuing program for X11")
|
|
|
|
(description "Dzen is a general purpose messaging, notification and menuing
|
|
|
|
program for X11. It was designed to be fast, tiny and scriptable in any language.")
|
|
|
|
(home-page "https://github.com/robm/dzen")
|
|
|
|
(license license:expat))))
|
|
|
|
|
2016-08-31 16:37:18 +02:00
|
|
|
(define-public xcb-util-xrm
|
|
|
|
(package
|
|
|
|
(name "xcb-util-xrm")
|
2016-12-20 03:56:50 +01:00
|
|
|
(version "1.2")
|
2016-08-31 16:37:18 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/Airblader/xcb-util-xrm/releases"
|
|
|
|
"/download/v" version "/xcb-util-xrm-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-12-20 03:56:50 +01:00
|
|
|
"0vbqhag51i0njc8d5fc8c6aa12496cwrc3s6s7sa5kfc17cwhppp"))
|
2016-08-31 16:37:18 +02:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Drop bundled m4.
|
|
|
|
'(delete-file-recursively "m4"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("m4" ,m4)
|
|
|
|
("libx11" ,libx11))) ; for tests
|
|
|
|
(inputs
|
|
|
|
`(("libxcb" ,libxcb)
|
|
|
|
("xcb-util" ,xcb-util)))
|
|
|
|
(home-page "https://github.com/Airblader/xcb-util-xrm")
|
|
|
|
(synopsis "XCB utility functions for the X resource manager")
|
|
|
|
(description
|
|
|
|
"The XCB util module provides a number of libraries which sit on
|
|
|
|
top of libxcb, the core X protocol library, and some of the extension
|
|
|
|
libraries. These experimental libraries provide convenience functions
|
|
|
|
and interfaces which make the raw X protocol more usable. Some of the
|
|
|
|
libraries also provide client-side code which is not strictly part of
|
|
|
|
the X protocol but which has traditionally been provided by Xlib.
|
|
|
|
|
|
|
|
XCB util-xrm module provides the following libraries:
|
|
|
|
|
|
|
|
- xrm: utility functions for the X resource manager.")
|
|
|
|
(license license:x11)))
|
2016-11-16 01:14:36 +01:00
|
|
|
|
|
|
|
(define-public xcalib
|
|
|
|
(package
|
|
|
|
(name "xcalib")
|
|
|
|
(version "0.8")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/xcalib/xcalib/" version
|
|
|
|
"/xcalib-source-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1rh6xb51c5xz926dnn82a2fn643g0sr4a8z66rn6yi7523kjw4ca"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:make-flags '("CC=gcc")
|
|
|
|
#:tests? #f ; No test suite
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
(install-file "xcalib" bin))))
|
|
|
|
(add-after 'install 'install-doc
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((doc (string-append(assoc-ref outputs "out")
|
|
|
|
"/share/doc/xcalib")))
|
|
|
|
(install-file "README" doc)
|
|
|
|
;; Avoid unspecified return value.
|
|
|
|
#t))))))
|
|
|
|
(inputs `(("libx11", libx11)
|
|
|
|
("libxext", libxext)
|
|
|
|
("libxxf86vm", libxxf86vm)))
|
|
|
|
(synopsis "Tiny monitor calibration loader for XFree86 (or X.org)")
|
|
|
|
(description "xcalib is a tiny tool to load the content of vcgt-Tags in ICC
|
|
|
|
profiles to the video card's gamma ramp. It does work with most video card
|
|
|
|
drivers except the generic VESA driver. Alter brightness, contrast, RGB, and
|
|
|
|
invert colors on a specific display/screen.")
|
|
|
|
(home-page "http://xcalib.sourceforge.net/")
|
|
|
|
(license license:gpl2)))
|