diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-09 02:00:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:10 +0200 |
commit | 62bd53dbb9afef108d56ffb3da948625ce47989e (patch) | |
tree | a94e47ed67167af93c12b2145ea196fba83c8fc1 | |
parent | b499be6e20fcdb40bdb0d31c49079efdcfef55fe (diff) | |
download | guix-62bd53dbb9afef108d56ffb3da948625ce47989e.tar.gz |
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.
-rw-r--r-- | gnu/packages/dictionaries.scm | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm index ea7ba538e8..06b5c4362c 100644 --- a/gnu/packages/dictionaries.scm +++ b/gnu/packages/dictionaries.scm @@ -53,6 +53,7 @@ #:use-module (gnu packages texinfo) #:use-module (gnu packages compression) #:use-module (gnu packages tcl) + #:use-module (gnu packages web) #:use-module (gnu packages xml)) @@ -391,7 +392,7 @@ intelligible and easily correctable.") (define-public sdcv (package (name "sdcv") - (version "0.5.3") + (version "0.5.5") (source (origin (method git-fetch) @@ -400,8 +401,7 @@ intelligible and easily correctable.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 - "144qpl9b8r2php0zhi9b7vg6flpvdgjy6yfaipydwwhxi4wy9600")))) + (base32 "17jwcgc3jdp41rvxqi7zdsysfpjgzqq4z1l345qwffp1an6yaaqk")))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DBUILD_TESTS=YES") @@ -413,16 +413,13 @@ intelligible and easily correctable.") (add-before 'check 'pre-check (lambda _ (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))))) (native-inputs `(("gettext" ,gettext-minimal) - ("pkg-config" ,pkg-config))) + ("pkg-config" ,pkg-config) + + ;; For tests. + ("jq" ,jq))) (inputs (list glib ncurses readline zlib)) (home-page "https://dushistov.github.io/sdcv/") |