[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54357] [PATCH 2/4] gnu: rust-parinfer: add phases to install the bu
From: |
(unmatched-parenthesis |
Subject: |
[bug#54357] [PATCH 2/4] gnu: rust-parinfer: add phases to install the bundled Vim and Kakoune plugins |
Date: |
Mon, 14 Mar 2022 21:56:38 +0000 |
* gnu/packages/text-editors.scm (rust-parinfer)[arguments]: Install the bundled
Vim and Kak plugins to the
correct directories.
---
gnu/packages/text-editors.scm | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index aff8bab9b0..1d2f5c7062 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -277,7 +277,18 @@ (define-public parinfer-rust
("rust-serde-json" ,rust-serde-json-1)
("rust-serde-derive" ,rust-serde-derive-1)
("rust-unicode-segmentation" ,rust-unicode-segmentation-1)
- ("rust-unicode-width" ,rust-unicode-width-0.1))))
+ ("rust-unicode-width" ,rust-unicode-width-0.1))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'install-vim-plugin
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (copy-recursively "doc" (string-append out
"/share/vim/vimfiles/doc"))
+ (copy-recursively "plugin" (string-append out
"/share/vim/vimfiles/plugin")))))
+ (add-after 'install-vim-plugin 'install-kak-plugin
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (copy-recursively "rc" (string-append out
"/share/kak/autoload"))))))))
(inputs
(list clang))
(home-page "https://github.com/justinbarclay/parinfer-rust")
--
2.34.0
- [bug#54357] [PATCH] gnu: kakoune: Clean up, and add a search path that makes it possible to package kak plugins in guix. (Plugins incoming soon.), (unmatched-parenthesis, 2022/03/12
- [bug#54357] [PATCH] gnu: kakoune: Clean up, and add a search path that makes it possible to package kak plugins in guix. (Plugins incoming soon.), paren, 2022/03/12
- [bug#54357] [PATCH] gnu: Add kak-auto-pairs, (unmatched-parenthesis, 2022/03/12
- [bug#54357] [PATCH] gnu: Add kak-sudo-write, (unmatched-parenthesis, 2022/03/12
- [bug#54357] [PATCH 1/4] gnu: kakoune: Clean up, and add a search path that makes it possible to package kak plugins in guix., (unmatched-parenthesis, 2022/03/13
- [bug#54357] [PATCH 1/4] gnu: kakoune: Clean up, and add a search path that makes it possible to package kak plugins in guix., (unmatched-parenthesis, 2022/03/14