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