gnu: neovim update to 0.9.0.
* gnu/packages/vim.scm (neovim): Update to 0.9.0. [arguments]: Adjust phase 'prevent-embedding-gcc-store-path to changes in the source code. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
23bc492dca
commit
fccb48d2ce
1 changed files with 4 additions and 4 deletions
|
@ -693,7 +693,7 @@ are detected, the user is notified.")))
|
||||||
(define-public neovim
|
(define-public neovim
|
||||||
(package
|
(package
|
||||||
(name "neovim")
|
(name "neovim")
|
||||||
(version "0.8.3")
|
(version "0.9.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -702,7 +702,7 @@ are detected, the user is notified.")))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1zff73yxbnxym6sn43xk6r0zc2ncingsib81v9g39ibrcinpwaa9"))))
|
"0xsvhm191cy5ivcw0c8dnpzbpcvvn5hsnkzkipr2aabgrsgqj628"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:modules
|
(list #:modules
|
||||||
|
@ -751,8 +751,8 @@ are detected, the user is notified.")))
|
||||||
(lambda _
|
(lambda _
|
||||||
;; nvim remembers its build options, including the compiler with
|
;; nvim remembers its build options, including the compiler with
|
||||||
;; its complete path. This adds gcc to the closure of nvim, which
|
;; its complete path. This adds gcc to the closure of nvim, which
|
||||||
;; doubles its size. We remove the refirence here.
|
;; doubles its size. We remove the reference here.
|
||||||
(substitute* "cmake/GetCompileFlags.cmake"
|
(substitute* "cmake.config/versiondef.h.in"
|
||||||
(("\\$\\{CMAKE_C_COMPILER\\}") "/gnu/store/.../bin/gcc"))
|
(("\\$\\{CMAKE_C_COMPILER\\}") "/gnu/store/.../bin/gcc"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs (list libuv-for-luv
|
(inputs (list libuv-for-luv
|
||||||
|
|
Reference in a new issue