mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: sdcv: Update to 0.5.5.
* gnu/packages/dictionaries.scm (sdcv): Update to 0.5.5. [arguments]: ...don't we? Remove the 'remove-jq-requirement phase. [native-inputs]: Add jq.
This commit is contained in:
parent
b499be6e20
commit
62bd53dbb9
1 changed files with 7 additions and 10 deletions
|
@ -53,6 +53,7 @@ (define-module (gnu packages dictionaries)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages tcl)
|
#:use-module (gnu packages tcl)
|
||||||
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages xml))
|
#:use-module (gnu packages xml))
|
||||||
|
|
||||||
|
|
||||||
|
@ -391,7 +392,7 @@ (define-public apertium
|
||||||
(define-public sdcv
|
(define-public sdcv
|
||||||
(package
|
(package
|
||||||
(name "sdcv")
|
(name "sdcv")
|
||||||
(version "0.5.3")
|
(version "0.5.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -400,8 +401,7 @@ (define-public sdcv
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "17jwcgc3jdp41rvxqi7zdsysfpjgzqq4z1l345qwffp1an6yaaqk"))))
|
||||||
"144qpl9b8r2php0zhi9b7vg6flpvdgjy6yfaipydwwhxi4wy9600"))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-DBUILD_TESTS=YES")
|
`(#:configure-flags '("-DBUILD_TESTS=YES")
|
||||||
|
@ -413,16 +413,13 @@ (define-public sdcv
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "HOME" (getcwd))
|
(setenv "HOME" (getcwd))
|
||||||
#t))
|
|
||||||
(add-after 'unpack 'remove-jq-requirement
|
|
||||||
(lambda _
|
|
||||||
;; We don't want to bring in jq for one test.
|
|
||||||
(substitute* "tests/t_json"
|
|
||||||
(("jq") "echo"))
|
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
|
||||||
|
;; For tests.
|
||||||
|
("jq" ,jq)))
|
||||||
(inputs
|
(inputs
|
||||||
(list glib ncurses readline zlib))
|
(list glib ncurses readline zlib))
|
||||||
(home-page "https://dushistov.github.io/sdcv/")
|
(home-page "https://dushistov.github.io/sdcv/")
|
||||||
|
|
Loading…
Reference in a new issue