mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add mimetreeparser.
* gnu/packages/kde-pim.scm (mimetreeparser): New variable. Change-Id: I897a1b92bf89a010ccdb690a6d72cc47a8fcc72f
This commit is contained in:
parent
80149d88a2
commit
b213e0d0f8
1 changed files with 27 additions and 0 deletions
|
@ -2271,3 +2271,30 @@ (define-public libksieve
|
|||
is a Sieve parser and interpreter library for KDE.")
|
||||
(license ;; GPL for programs, LGPL for libraries
|
||||
(list license:gpl2+ license:lgpl2.0+))))
|
||||
(define-public mimetreeparser
|
||||
(package
|
||||
(name "mimetreeparser")
|
||||
(version "24.05.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/mimetreeparser-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "132slwaqlaxnbvkpqb9w4ak4mpkrvw6ln81nbka91c3ngcamfac9"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
(list extra-cmake-modules))
|
||||
(inputs
|
||||
(list kcalendarcore kcodecs libkleo kwidgetsaddons qtdeclarative))
|
||||
(propagated-inputs (list ki18n kmime kmbox))
|
||||
(arguments
|
||||
(list #:tests? #f ;; FIXME: 7/9 tests fail.
|
||||
#:qtbase qtbase))
|
||||
(home-page "https://kontact.kde.org")
|
||||
(synopsis "Parser for MIME trees")
|
||||
(description "This package provides a parser for a MIME tree and is based
|
||||
on KMime. The goal is given a MIME tree to extract a list of parts and a list
|
||||
of attachments, check the validity of the signatures and decrypt any encrypted
|
||||
part.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
|
Loading…
Reference in a new issue