[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/78: gnu: Add libdbx.
From: |
guix-commits |
Subject: |
01/78: gnu: Add libdbx. |
Date: |
Fri, 23 Feb 2024 03:11:53 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 54d042df921505218c4f1f4d85082a361d667b17
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Feb 22 10:24:57 2024 +0100
gnu: Add libdbx.
* gnu/packages/mail.scm (libdbx): New variable.
Change-Id: Ia50bec92c5de72e4037cbf59ee7ecc6bf657fdd0
---
gnu/packages/mail.scm | 33 ++++++++++++++++++++++++++++++++-
1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 9946438438..c2be85aa94 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -27,7 +27,7 @@
;;; Copyright © 2018, 2019, 2020, 2021, 2022 Pierre Langlois
<pierre.langlois@gmx.com>
;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
-;;; Copyright © 2018, 2019, 2020, 2021, 2022, 2023 Ricardo Wurmus
<rekado@elephly.net>
+;;; Copyright © 2018-2024 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019–2022 Tanguy Le Carrour <tanguy@bioneland.org>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org>
@@ -4617,6 +4617,37 @@ score.")
undelete email messages from Outlook Express .dbx files.")
(license license:gpl3+)))
+(define-public libdbx
+ (package
+ (name "libdbx")
+ (version "1.0.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/ol2mbox/LibDBX/v"
+ version "/libdbx_"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0fs4268qcy99nhl8345sv257b002530y77idkf6z9i7qxmqghq4w"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #false ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda _
+ (for-each (lambda (file)
+ (install-file file
+ (string-append #$output "/bin")))
+ (list "readdbx" "readoe")))))))
+ (home-page "http://sourceforge.net/projects/ol2mbox/")
+ (synopsis "Tools for conversion of Outlook Express files to mailbox
format")
+ (description "This package provides tools for the conversion of Outlook
+Express data files to standard mailbox format.")
+ (license license:gpl2+)))
+
(define-public libpst
(package
(name "libpst")
- branch go-team updated (07962429da -> cb3bcce563), guix-commits, 2024/02/23
- 03/78: gnu: universal-ctags: Update to 6.1.20240218.0., guix-commits, 2024/02/23
- 02/78: gnu: Remove duplicate module import., guix-commits, 2024/02/23
- 01/78: gnu: Add libdbx.,
guix-commits <=
- 04/78: gnu: vim-asyncrun: Update to 2.12.4., guix-commits, 2024/02/23
- 08/78: gnu: emacs-tramp: Update to 2.6.2.1., guix-commits, 2024/02/23
- 05/78: gnu: Add neovim-asyncrun., guix-commits, 2024/02/23
- 11/78: gnu: python-ruamel-yaml: Update to 0.18.6., guix-commits, 2024/02/23
- 09/78: gnu: tigervnc-client: Update to 1.13.1., guix-commits, 2024/02/23
- 10/78: gnu: python-ruamel.yaml.clib: Update to 0.2.8., guix-commits, 2024/02/23
- 13/78: gnu: Add python-cwlformat., guix-commits, 2024/02/23
- 14/78: gnu: Add python-cwl-upgrader., guix-commits, 2024/02/23
- 16/78: gnu: Add python-spython., guix-commits, 2024/02/23
- 18/78: gnu: Add xpenguins., guix-commits, 2024/02/23