blob: e9ccee04bb77eebf18ff785e0a3acd33dd737450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
(define-module (px packages email)
#:use-module (guix download)
#:use-module (guix build-system qt)
#:use-module (guix build-system trivial)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix packages)
#:use-module (gnu packages cyrus-sasl)
#:use-module (gnu packages curl)
#:use-module (gnu packages qt)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages version-control)
#:use-module (gnu packages kde-pim)
#:use-module (gnu packages serialization)
#:use-module (gnu packages databases)
#:use-module (gnu packages search)
#:use-module (gnu packages gnupg)
#:use-module (guix git-download))
(define-public kasync
(package
(name "kasync")
(version "0.3.0")
(home-page "https://kube-project.com/")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KDE/kasync")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0k5jrmyqa0y4vfvg6sjr3mf12p62b1f7l3ryvy3wg1app63rssaf"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules kdoctools pkg-config))
(inputs (list qtbase-5))
(arguments
`(#:tests? #f))
(synopsis "Library for composable asynchronous code
using a continuation based approach")
(description "KAsync helps writing composable asynchronous code
using a continuation based approach.")
(license license:gpl2+)))
(define-public kimap2
(package
(name "kimap2")
(version "0.4.0")
(home-page "https://kube-project.com/")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KDE/kimap2")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16ax75xq0lqzjf72xr7gci5vv55kf8r5iyr3s27y0j32fjr25l25"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules kdoctools pkg-config))
(inputs (list qtbase-5 kcoreaddons kcodecs kmime cyrus-sasl))
(arguments
`(#:tests? #f))
(synopsis
"This library provides a job-based API for interacting with an IMAP4rev1 server")
(description
"This library provides a job-based API for interacting with an IMAP4rev1 server.
It manages connections, encryption and parameter quoting and encoding,
but otherwise provides quite a low-level interface to the protocol.
This library does not implement an IMAP client; it merely makes it easier to do so.")
(license license:gpl2+)))
(define-public kdav2
(package
(name "kdav2")
(version "0.4.0")
(home-page "https://kube-project.com/")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KDE/kdav2")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1sy1kiwx8six711frpav7a3py7g66cv8ryy0my7rr7kdv8r82r7k"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules kdoctools pkg-config))
(inputs (list qtbase-5 qtxmlpatterns kcoreaddons))
(arguments
`(#:tests? #f))
(synopsis "This is an DAV protocol implemention with KJobs")
(description "This is an DAV protocol implemention with KJobs.
Calendars and todos are supported, using either GroupDAV
or CalDAV, and contacts are supported using GroupDAV or
CardDAV.")
(license license:gpl2+)))
(define-public claws-mail-theme-breeze
(package
(name "claws-mail-theme-breeze")
(version "0.0.1")
(source
(origin
(method url-fetch)
(uri (string-append
"https://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_breeze.tar.gz"))
(sha256
(base32 "104ak4m3s7i4d44clpn4kcq4bhjz92ybmpiw83dpg2xwc9w8k2pf"))))
(build-system trivial-build-system)
(arguments
`(#:modules ((guix build utils))
#:builder (begin
(use-modules (guix build utils)
(srfi srfi-26))
(let* ((source (assoc-ref %build-inputs "source"))
(tar (assoc-ref %build-inputs "tar"))
(gzip (assoc-ref %build-inputs "gzip"))
(theme-dir (string-append %output
"/share/claws-mail/themes")))
(mkdir-p theme-dir)
(setenv "PATH"
(string-append gzip "/bin"))
(invoke (string-append tar "/bin/tar") "xvf" source "-C"
theme-dir)))))
(native-inputs `(("tar" ,tar)
("gzip" ,gzip)))
(synopsis "claws-mail breeze theme")
(home-page "https://www.claws-mail.org/themes.php")
(description "claws-mail breeze theme")
(license license:gpl3+)))
|