me
/
guix
Archived
1
0
Fork 0

gnu: Add libpst.

* gnu/packages/mail.scm (libpst): New variable.
Ricardo Wurmus 2021-08-01 13:21:24 +02:00
parent 42aee12103
commit 5ab679f4da
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 28 additions and 0 deletions

View File

@ -4407,6 +4407,34 @@ score.")
undelete email messages from Outlook Express .dbx files.")
(license license:gpl3+)))
(define-public libpst
(package
(name "libpst")
(version "0.6.76")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.five-ten-sg.com/libpst/packages/"
"libpst-" version ".tar.gz"))
(sha256
(base32
"0hhbbb8ddsgjhv9y1xd8s9ixlhdnjmhw12v06jwx4j6vpgp1na9x"))))
(build-system gnu-build-system)
(inputs
`(("boost" ,boost)
("libgsf" ,libgsf)
("python" ,python)
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "https://www.five-ten-sg.com/libpst/")
(synopsis "")
(description "The Libpst utilities include @code{readpst} which can
convert email messages to both mbox and MH mailbox formats, @code{pst2ldif}
which can convert the contacts to @code{.ldif} format for import into LDAP
databases, and other tools to process Outlook email archives.")
(license license:gpl2+)))
(define-public crm114
(package
(name "crm114")