diff options
| author | Sergio Pastor Pérez <sergio.pastorperez@gmail.com> | 2026-08-23 14:46:37 +0200 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2026-08-24 10:19:52 +0900 |
| commit | d07494a5ff02aaeb0b0654b876b19e1a3f6bd70e (patch) | |
| tree | e24fabc34fb4f70e91a1b1b467833e998c83c083 | |
| parent | d68f0f01a2b6ee402d93db1c6b1872f543a7cbe9 (diff) | |
gnu: Add rdrview.
* gnu/packages/web.scm (rdrview): New variable.
Merges: https://codeberg.org/guix/guix/pulls/10752
Reviewed-by: moksh <mysticmoksh@riseup.net>
Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
| -rw-r--r-- | gnu/packages/web.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 8047f6d0064..a370e8691c2 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm | |||
| @@ -7956,6 +7956,37 @@ snippets on @url{https://commandlinefu.com}.") | |||
| 7956 | (home-page "https://github.com/taviso/nntpit") | 7956 | (home-page "https://github.com/taviso/nntpit") |
| 7957 | (license license:expat)))) | 7957 | (license license:expat)))) |
| 7958 | 7958 | ||
| 7959 | (define-public rdrview | ||
| 7960 | (package | ||
| 7961 | (name "rdrview") | ||
| 7962 | (version "0.1.5") | ||
| 7963 | (source | ||
| 7964 | (origin | ||
| 7965 | (method git-fetch) | ||
| 7966 | (uri (git-reference | ||
| 7967 | (url "https://github.com/eafer/rdrview") | ||
| 7968 | (commit (string-append "v" version)))) | ||
| 7969 | (file-name (git-file-name name version)) | ||
| 7970 | (sha256 | ||
| 7971 | (base32 "115qc7qpq899jzkna28brjni0m2a50g1li52kg9pqykgsp15f6z4")))) | ||
| 7972 | (build-system gnu-build-system) | ||
| 7973 | (arguments | ||
| 7974 | (list | ||
| 7975 | #:tests? #f ;they seem to require user input. | ||
| 7976 | #:make-flags | ||
| 7977 | #~(list (string-append "CC=" #$(cc-for-target)) | ||
| 7978 | (string-append "PREFIX=" #$output)) | ||
| 7979 | #:phases | ||
| 7980 | #~(modify-phases %standard-phases | ||
| 7981 | (delete 'configure)))) | ||
| 7982 | (inputs (list curl libseccomp libxml2)) | ||
| 7983 | (home-page "https://github.com/eafer/rdrview") | ||
| 7984 | (synopsis "Firefox reader view as a command line tool") | ||
| 7985 | (description | ||
| 7986 | "@code{rdrview} is command line tool to extract the main content from a | ||
| 7987 | webpage, as done by the reader view feature of most modern browsers.") | ||
| 7988 | (license license:apsl2))) | ||
| 7989 | |||
| 7959 | (define-public rss-bridge | 7990 | (define-public rss-bridge |
| 7960 | (package | 7991 | (package |
| 7961 | (name "rss-bridge") | 7992 | (name "rss-bridge") |
