me
/
guix
Archived
1
0
Fork 0

gnu: vim: Update to 8.0.

* gnu/packages/vim.scm (vim): Update to 8.0.
[arguments]: Update files which need /bin/sh patched.
master
Efraim Flashner 2016-09-12 20:55:21 +03:00
parent 2642231b39
commit db3cc007e3
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 6 additions and 4 deletions

View File

@ -31,14 +31,14 @@
(define-public vim
(package
(name "vim")
(version "7.4")
(version "8.0")
(source (origin
(method url-fetch)
(uri (string-append "ftp://ftp.vim.org/pub/vim/unix/vim-"
version ".tar.bz2"))
(sha256
(base32
"1pjaffap91l2rb9pjnlbrpvb3ay5yhhr3g91zabjvw1rqk9adxfh"))))
"1s34rf8089klsbdx5l0iw7vjymir0kzfrx8wb30s31wygnq29axc"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
@ -49,8 +49,10 @@
(lambda _
(substitute* "runtime/tools/mve.awk"
(("/usr/bin/nawk") (which "gawk")))
(substitute* "src/testdir/Makefile"
(("/bin/sh") (which "sh"))))))))
(substitute* '("src/testdir/Makefile"
"src/testdir/test_normal.vim")
(("/bin/sh") (which "sh")))
#t)))))
(inputs
`(("gawk" ,gawk)
("inetutils" ,inetutils)