summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/web.scm31
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
7987webpage, 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")