diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-06-17 00:00:34 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-06-17 00:15:28 +0200 |
commit | 20ab92719e24b4286aeee715cd9bd07315708a82 (patch) | |
tree | e34ce43562155f8aadb7fb1eb34f2f09f64af106 /gnu | |
parent | f3e68e61acbc761d68755051bade8c13c3610c06 (diff) |
gnu: Add undbx.
* gnu/packages/mail.scm (undbx): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index ab914ca428..5a1ca62a4f 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -4343,6 +4343,24 @@ score.") (home-page "https://www.rspamd.com/") (license license:asl2.0))) +(define-public undbx + (package + (name "undbx") + (version "0.21") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/undbx/undbx-" + version ".tar.gz")) + (sha256 + (base32 + "0ncs1dzhrn9nlaxpyap2ipf61fc7k9bkkqacp3w6bngfj2c0p6yj")))) + (build-system gnu-build-system) + (home-page "https://undbx.sourceforge.io/") + (synopsis "Extract email messages from Outlook Express .dbx files") + (description "This package provides a tool to extract, recover and +undelete email messages from Outlook Express .dbx files.") + (license license:gpl3+))) + (define-public crm114 (package (name "crm114") |