gnu: vim: Update to 8.1.0644.
* gnu/packages/vim.scm (vim): Update to 8.1.0644. [native-inputs]: Add libtool. (xxd)[native-inputs]: New field, empty list. (vim-full)[native-inputs]: Also inherit native-inputs from vim.
This commit is contained in:
parent
597f35e6f0
commit
9123c420dd
1 changed files with 8 additions and 3 deletions
|
@ -33,6 +33,7 @@
|
||||||
#:use-module (gnu packages acl)
|
#:use-module (gnu packages acl)
|
||||||
#:use-module (gnu packages admin) ; For GNU hostname
|
#:use-module (gnu packages admin) ; For GNU hostname
|
||||||
#:use-module (gnu packages attr)
|
#:use-module (gnu packages attr)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
#:use-module (gnu packages gawk)
|
#:use-module (gnu packages gawk)
|
||||||
|
@ -61,7 +62,7 @@
|
||||||
(define-public vim
|
(define-public vim
|
||||||
(package
|
(package
|
||||||
(name "vim")
|
(name "vim")
|
||||||
(version "8.1.0551")
|
(version "8.1.0644")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -70,7 +71,7 @@
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1db5ihzj9flz62alb3kd1w173chb5vbni325abqjf25aly7c22n0"))))
|
"1xksb2v8rw1zgrd5fwqvrh44lf277k85sad2y4ia1z17y7i8j2fl"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
|
@ -104,6 +105,8 @@
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("tcsh" ,tcsh))) ; For runtime/tools/vim32
|
("tcsh" ,tcsh))) ; For runtime/tools/vim32
|
||||||
|
(native-inputs
|
||||||
|
`(("libtool" ,libtool)))
|
||||||
(home-page "https://www.vim.org/")
|
(home-page "https://www.vim.org/")
|
||||||
(synopsis "Text editor based on vi")
|
(synopsis "Text editor based on vi")
|
||||||
(description
|
(description
|
||||||
|
@ -136,6 +139,7 @@ configuration files.")
|
||||||
(install-file "xxd" bin)
|
(install-file "xxd" bin)
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs `())
|
(inputs `())
|
||||||
|
(native-inputs `())
|
||||||
(synopsis "Hexdump utility from vim")
|
(synopsis "Hexdump utility from vim")
|
||||||
(description "This package provides the Hexdump utility xxd that comes
|
(description "This package provides the Hexdump utility xxd that comes
|
||||||
with the editor vim.")))
|
with the editor vim.")))
|
||||||
|
@ -189,7 +193,8 @@ with the editor vim.")))
|
||||||
display " &")))))))))))
|
display " &")))))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("xorg-server" ,xorg-server)))
|
("xorg-server" ,xorg-server)
|
||||||
|
,@(package-native-inputs vim)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("acl" ,acl)
|
`(("acl" ,acl)
|
||||||
("atk" ,atk)
|
("atk" ,atk)
|
||||||
|
|
Reference in a new issue