diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-07-06 12:05:52 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-07-06 12:06:53 +0300 |
commit | bf22d0d03843a8a40cff012b08204958aedab0e9 (patch) | |
tree | 7e4d29b13f276be4a87f8a75611bddf6d69c1f08 /gnu/packages/lisp.scm | |
parent | c2fe78db73401a67306a5119ea9ca8de1d240a21 (diff) | |
download | guix-bf22d0d03843a8a40cff012b08204958aedab0e9.tar guix-bf22d0d03843a8a40cff012b08204958aedab0e9.tar.gz |
gnu: txr: Install vim syntax files.
* gnu/packages/lisp.scm (txr)[arguments]: Add phase to install vim
syntax files.
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 0bb10e4efd..02abdd1e37 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> ;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca> ;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2017-2019, 2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017, 2019–2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net> ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com> @@ -1019,7 +1019,13 @@ the HTML documentation of TXR.") (let ((doc (string-append (assoc-ref outputs "out") "/share/doc/" ,name "-" ,version))) (for-each (lambda (f) (install-file f doc)) - '("txr-manpage.html" "txr-manpage.pdf")))))))) + '("txr-manpage.html" "txr-manpage.pdf"))))) + (add-after 'install 'install-vim-files + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (syntax (string-append out "/share/vim/vimfiles/syntax"))) + (install-file "tl.vim" syntax) + (install-file "txr.vim" syntax))))))) (native-inputs ;; Required to build the documentation. (list ghostscript |