diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-07-30 12:42:05 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-08-28 22:48:32 +0300 |
commit | dc8675afa76a996c7d1d55edba1dcb17d044a9a6 (patch) | |
tree | 10fede0774c93c128926824f2a44abc357bb9593 /gnu | |
parent | 967de7c5b0100e49acf2ea1fd85bf8503b9d2057 (diff) | |
download | guix-dc8675afa76a996c7d1d55edba1dcb17d044a9a6.tar guix-dc8675afa76a996c7d1d55edba1dcb17d044a9a6.tar.gz |
gnu: Add urlscan.
* gnu/packages/mail.scm (urlscan): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index d1c1c096e5..fc8436452a 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2596,3 +2596,29 @@ processes mailboxes based on the results. It can be used to delete, copy, move, flag, etc. messages residing in mailboxes at the same or different mail servers. The 4rev1 and 4 versions of IMAP are supported.") (license license:expat))) + +(define-public urlscan + (package + (name "urlscan") + (version "0.9.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "urlscan" version)) + (sha256 + (base32 + "133f28bisr4xj0nihpwpil8dyadss62mp8qgqdyzd676hg9xjfyc")))) + (build-system python-build-system) + (propagated-inputs + `(("python-urwid" ,python-urwid))) + (home-page "https://github.com/firecat53/urlscan") + (synopsis "View/select the URLs in an email message or file") + (description + "Urlscan is a small program that is designed to integrate with the +@code{mutt} mailreader to allow you to easily launch a Web browser for URLs +contained in email messages. It parses an email message or file and scans it +for URLs and email addresses. It then displays the URLs and their context +within the message, and allows you to choose one or more URLs to send to your +Web browser. Alternatively, it send a list of all URLs to stdout. It is a +replacement for the @code{urlview} program.") + (license gpl2))) |