gnu: newsboat: Update to 2.11.
* gnu/packages/syndication.scm (newsboat): Update to 2.11. [inputs]: Change from JSON-C-0.12 to JSON-C. [native-search-paths]: New field.
This commit is contained in:
parent
171e84d63d
commit
7240b4a989
|
@ -32,7 +32,7 @@
|
|||
(define-public newsboat
|
||||
(package
|
||||
(name "newsboat")
|
||||
(version "2.10.2")
|
||||
(version "2.11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -40,7 +40,7 @@
|
|||
"/newsboat-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1x4nxx1kvmrcm8jy73dvg56h4z15y3sach2vr13cw8rsbi7v99px"))))
|
||||
"0yh1qdk15s9k4pffiw1155whfckpffq72dpyp9rck7yxgy5ya1hx"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
|
@ -49,7 +49,7 @@
|
|||
("asciidoc" ,asciidoc)))
|
||||
(inputs
|
||||
`(("curl" ,curl)
|
||||
("json-c" ,json-c-0.12) ; check whether json-c-0.12 can be removed
|
||||
("json-c" ,json-c)
|
||||
("libxml2" ,libxml2)
|
||||
("ncurses" ,ncurses)
|
||||
("stfl" ,stfl)
|
||||
|
@ -64,6 +64,9 @@
|
|||
#:make-flags
|
||||
(list (string-append "prefix=" (assoc-ref %outputs "out")))
|
||||
#:test-target "test"))
|
||||
(native-search-paths
|
||||
;; Newsboat respects CURL_CA_BUNDLE.
|
||||
(package-native-search-paths curl))
|
||||
(home-page "https://newsboat.org/")
|
||||
(synopsis "Text-mode RSS and Atom feed reader with podcast support")
|
||||
(description "Newsboat is a feed reader for @dfn{RSS} and @dfn{Atom}, XML
|
||||
|
|
Loading…
Reference in New Issue