gnu: Add r-jsonify.
* gnu/packages/cran.scm (r-jsonify): New variable.
gnu: Add r-ctrialsgov.
* gnu/packages/cran.scm (r-ctrialsgov): New variable.
services: xorg-wrapper: Support xorg server input rewriting.
This patch adds support for proper xorg server input rewriting. It uses the
lookup-package-direct-input procedure to configure the X server paths
dynamically, instead of always using the hard coded package. Something like
this is now possible:
(define other-mesa
(package-input-rewriting/spec `(("mesa" . ,(const other-mesa)))))
(xorg-configuration
(xorg-configuration
(server (other-mesa xorg-server))))
Without this patch the X server would still be configured with mesa (causing
version issues), and not with other-mesa (as per the input rewrite).
* gnu/services/xorg.scm (xorg-configuration-server-package-path)
(xorg-configuration-dri-driver-path, xorg-configuration-xkb-bin-dir)
(xorg-configuration-xkb-dir): New procedures.
(xorg-wrapper): Use them for dri and xkb paths.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
gnu: emacs-cider: Update to 1.7.0.
* gnu/packages/emacs-xyz.scm (emacs-cider): Update to 1.7.0.
gnu: emacs-citar: Update to 1.3.1.
* gnu/packages/emacs-xyz.scm (emacs-citar): Update to 1.3.1.
gnu: emacs-citar-org-roam: Update to 0.5.0.
* gnu/packages/emacs-xyz.scm (emacs-citar-org-roam): Update to 0.5.0.
[propagated-inputs]: Reorder alphabetically.
gnu: emacs-evil-collection: Run tests.
* gnu/packages/emacs-xyz.scm (emacs-evil-collection)[arguments]: Run tests.
[native-inputs]: Add EMACS-MAGIT.
[propagated-inputs]: Reorder-alphabetically.
gnu: emacs-evil-collection: Update to 0.0.9.
* gnu/packages/emacs-xyz.scm (emacs-evil-collection): Update to 0.0.9.
gnu: emacs-geiser-chez: Update to 0.18.
* gnu/packages/emacs-xyz.scm (emacs-geiser-chez): Update to 0.18.
gnu: emacs-sqlite3-api: Update to 0.17.
* gnu/packages/emacs-xyz.scm (emacs-sqlite3-api): Update to 0.17.
gnu: Syncthing: Update to 1.23.2.
* gnu/packages/syncthing.scm (syncthing): Update to 1.23.2.
gnu: python-scikit-allel: Use pyproject-build-system.
* gnu/packages/python-science.scm (python-scikit-allel): Move up to create
alphabetic order.
[build-system]: Use pyproject-build-system.
[arguments]: Provide test flags instead of overriding 'check phase; split out
build step into new 'build-ext phase. Disable roh_mhmm tests.
gnu: Add python-scikit-optimize.
* gnu/packages/python-science.scm (python-scikit-optimize): New variable.
.guix-authorizations: Remove Paul Garlick due to inactivity.
* .guix-authorizations: Remove from pgarlick.
.guix-authorizations: Remove Jakub Kądziołka due to inactivity.
* .guix-authorizations: Remove niedzejkob.
.guix-authorizations: Remove Chris Marusich due to inactivity.
* .guix-authorizations: Remove marusich.
.guix-authorizations: Remove Brice Waegeneire due to inactivity.
* .guix-authorizations: Remove bricewge.
.guix-authorizations: Remove Alex Kost due to inactivity.
* .guix-authorizations: Remove alezost.
services: mpd: Set PulseAudio-related variables.
These variables are necessary for PulseAudio to work properly out-of-the-box
for 'non-interactive' users.
* doc/guix.texi (Audio Services): Update environment-variables field description for
mpd-configuration data type.
* gnu/services/audio.scm (mpd-configuration)[environment-variables]: Set
PULSE_CLIENTCONFIG and PULSE_CONFIG environment variables to the system-wide
PulseAudio configuration.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
services: audio: Remove redundant list-of-string? predicate.
Use list-of-strings? predicate defined in (gnu services configuration).
* gnu/services/audio.scm (list-of-string?): Remove predicate.
(mpd-serialize-list-of-string): Rename procedure to ...
(mpd-serialize-list-of-strings): ... this.
(mpd-configuration)[environment-variables]: Switch to list-of-strings.
[endpoints]: Switch to maybe-list-of-strings.
(mympd-ip-acl)[allow, deny]: Switch to list-of-strings.
(mympd-serialize-configuration): Rename serialize-list-of-string to
serialize-list-of-strings.
* doc/guix.texi (Audio Services): Update it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>