diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-01-03 12:48:29 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-01-03 12:49:36 +0200 |
commit | aeb24932c50f2a90210021c2bacaddf6c5f15bec (patch) | |
tree | 1c0c75ffbacfb3d8ee6d7ff74e07c57622d5e3d4 /gnu/packages/syndication.scm | |
parent | abe47269cb1a2382ee20bab56a18a485a1fda541 (diff) |
gnu: newsboat: Update to 2.22.
* gnu/packages/syndication.scm (newsboat): Update to 2.22.
[arguments]: Remove rust-gettext-sys-0.19, rust-lazy-static-1,
rust-nom-5, rust-xdg-2.2 from cargo-inputs. Add rust-cxx-0.5,
rust-cxx-build-0.5, rust-nom-6.
Diffstat (limited to 'gnu/packages/syndication.scm')
-rw-r--r-- | gnu/packages/syndication.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index 82d3fa3a21..075fd7e3e6 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016, 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> ;;; @@ -53,7 +53,7 @@ (define-public newsboat (package (name "newsboat") - (version "2.21") + (version "2.22") (source (origin (method url-fetch) @@ -61,7 +61,7 @@ "/newsboat-" version ".tar.xz")) (sha256 (base32 - "0ccwbb3maini18453wjqn8m3bd7zzm6dn5a9vpb8smxv8vfv6ihc")))) + "146p3j46hna1m8zlacb9q1ljnldwv6xrjbaplm94f2x0v4azi1jj")))) (build-system cargo-build-system) (native-inputs `(("gettext" ,gettext-minimal) @@ -87,17 +87,16 @@ ("rust-chrono" ,rust-chrono-0.4) ("rust-clap" ,rust-clap-2) ("rust-curl-sys" ,rust-curl-sys-0.4) + ("rust-cxx" ,rust-cxx-0.5) + ("rust-cxx-build" ,rust-cxx-build-0.5) ("rust-gettext-rs" ,rust-gettext-rs-0.5) - ("rust-gettext-sys" ,rust-gettext-sys-0.19) - ("rust-lazy-static" ,rust-lazy-static-1) ("rust-libc" ,rust-libc-0.2) ("rust-natord" ,rust-natord-1.0) - ("rust-nom" ,rust-nom-5) + ("rust-nom" ,rust-nom-6) ("rust-once-cell" ,rust-once-cell-1) ("rust-rand" ,rust-rand-0.7) ("rust-url" ,rust-url-2) - ("rust-unicode-width" ,rust-unicode-width-0.1) - ("rust-xdg" ,rust-xdg-2.2)) + ("rust-unicode-width" ,rust-unicode-width-0.1)) #:cargo-development-inputs (("rust-tempfile" ,rust-tempfile-3) ("rust-proptest" ,rust-proptest-0.9) |