[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: vifm: Update to 0.12.1.
From: |
guix-commits |
Subject: |
01/03: gnu: vifm: Update to 0.12.1. |
Date: |
Thu, 22 Sep 2022 03:45:39 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 6f2e28f026b07101f94113079a21d69e760f30a0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Sep 22 10:06:22 2022 +0300
gnu: vifm: Update to 0.12.1.
* gnu/packages/vim.scm (vifm): Update to 0.12.1.
[arguments]: Remove trailing #t from phases.
---
gnu/packages/vim.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index b20ff0be7b..f379543599 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -823,7 +823,7 @@ and support for fonts with ligatures.")
(define-public vifm
(package
(name "vifm")
- (version "0.12")
+ (version "0.12.1")
(source
(origin
(method url-fetch)
@@ -834,7 +834,7 @@ and support for fonts with ligatures.")
"vifm-" version ".tar.bz2")))
(sha256
(base32
- "1h5j4y704nciyzg3aaav8sl3r5h9mpwq8f28cj65nnxk6a7n3a9k"))))
+ "122ncp319xisxjxcy33bshjib6905bb0aaz0xjdfkkycplz83qlg"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-build-timestamp")
@@ -849,8 +849,7 @@ and support for fonts with ligatures.")
(("/bin/bash") (which "bash")))
;; This test segfaults
(substitute* "tests/Makefile"
- (("misc") ""))
- #t))
+ (("misc") ""))))
(add-after 'install 'install-vim-plugin-files
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@@ -861,8 +860,7 @@ and support for fonts with ligatures.")
(copy-recursively (string-append vifm "/vim")
vimfiles)
(delete-file-recursively (string-append vifm "/colors"))
- (delete-file-recursively (string-append vifm "/vim")))
- #t)))))
+ (delete-file-recursively (string-append vifm "/vim"))))))))
(native-inputs
(list groff)) ; for the documentation
(inputs