;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Mathieu Othacehe ;;; Copyright © 2019, 2022 Ludovic Courtès ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; Copyright © 2021 Leo Famulari ;;; Copyright © 2023 Denys Nykula ;;; ;;; 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.
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2022-09-06 13:38:02 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2022-09-06 13:47:48 +0200
commit934b77260240a9fda11066816107425d1fd6dc7d (patch)
treefb7ef678f23f5610e24f193032d732705e018531 /tests/debug-link.scm
parent48e4275a917107ca1e9cc09c406de57f2828b463 (diff)
downloadguix-934b77260240a9fda11066816107425d1fd6dc7d.tar.gz
guix-934b77260240a9fda11066816107425d1fd6dc7d.zip
gnu: emacs-json-reformat: Update to 0.0.7.
* gnu/packages/emacs-xyz.scm (emacs-json-reformat): Update to 0.0.7. [arguments]<#:phases>: Disable a failing test.
Diffstat (limited to 'tests/debug-link.scm')
0 files changed, 0 insertions, 0 deletions
ervices)) (packages (append-map system-service-packages services)) (desktop? (find desktop-system-service? services)) (base (if desktop? '%desktop-services '%base-services)) (native-console-font (match (getenv "LANGUAGE") ((or "be" "bg" "el" "eo" "kk" "ky" "mk" "mn" "ru" "sr" "tg" "uk") "LatGrkCyr-8x16") (_ #f))) (services (if native-console-font `(modify-services ,base (console-font-service-type config => (map (lambda (tty) (cons (car tty) ,native-console-font)) config))) base)) (service-heading (list (vertical-space 1) (comment (G_ "\ ;; Below is the list of system services. To search for available ;; services, run 'guix system search KEYWORD' in a terminal.\n")))) (package-heading (list (vertical-space 1) (comment (G_ "\ ;; Packages installed system-wide. Users can also install packages ;; under their own account: use 'guix search KEYWORD' to search ;; for packages and 'guix install PACKAGE' to install a package.\n"))))) (if (null? snippets) `(,@(if (null? packages) '() `(,@package-heading (packages (append (list ,@packages) %base-packages)))) ,@service-heading (services ,services)) `(,@(if (null? packages) '() `(,@package-heading (packages (append (list ,@packages) %base-packages)))) ,@service-heading (services (append (list ,@snippets ,@(if desktop? ;; XXX: Assume 'keyboard-layout' is in ;; scope. `((set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) '())) ,(vertical-space 1) ,(comment (G_ "\ ;; This is the default list of services we ;; are appending to.\n")) ,services))))))