diff options
author | Ivan Vilata i Balaguer <ivan@selidor.net> | 2023-01-27 09:22:03 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-01-27 09:26:59 +0100 |
commit | f656e61268b3f99e8f70970a98845ec67e9ac447 (patch) | |
tree | c956c8af55395ef830f398f8f27acea680f2535a /gnu | |
parent | c2b40b4b4c9e0227e47730ebe73a653b89d1e568 (diff) | |
download | guix-f656e61268b3f99e8f70970a98845ec67e9ac447.tar guix-f656e61268b3f99e8f70970a98845ec67e9ac447.tar.gz |
gnu: emacs-ergoemacs-mode: Include keyboard layout SVGs.
* gnu/packages/emacs-xyz.scm (emacs-ergoemacs-mode)[arguments]<#:include>: Add
SVG files.
A couple of SVG files from the source need to be installed to make
‘ergoemacs-theme-describe’ and ‘ergoemacs-layout-describe’ work.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index dc378581f5..645bfa851b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -121,6 +121,7 @@ ;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> ;;; Copyright © 2023 Simon Streit <simon@netpanic.org> ;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com> +;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -20004,6 +20005,9 @@ used with SGML-like languages: XML, HTML, XHTML, XSL, etc.") (base32 "1ipwzl0l26g5qvc1sgmz2ra5vn1j3hl0mnkgzpa3j4p8gsmxdiqr")))) (build-system emacs-build-system) + (arguments + (list #:include #~(cons* "^kbd\\.svg$" "^kbd-ergo\\.svg$" + %default-include))) (propagated-inputs (list emacs-undo-tree)) (home-page "https://ergoemacs.github.io/") |