gnu: Add choqok.
[jackhill/guix/guix.git] / gnu / packages / kde-internet.scm
CommitLineData
533c95bc
HG
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages kde-internet)
20 #:use-module (guix build-system qt)
21 #:use-module (guix download)
22 #:use-module ((guix licenses) #:prefix license:)
23 #:use-module (guix packages)
24 #:use-module (guix utils)
25 #:use-module (gnu packages)
26 #:use-module (gnu packages kde)
27 #:use-module (gnu packages kde-frameworks)
28 #:use-module (gnu packages kde-pim)
29 #:use-module (gnu packages pkg-config)
30 #:use-module (gnu packages qt)
31 #:use-module (gnu packages web))
32
33(define-public choqok
34 (package
35 (name "choqok")
36 (version "1.6.0")
37 (source
38 (origin
39 (method url-fetch)
40 (uri (string-append "mirror://kde/stable/choqok/"
41 (version-major+minor version)
42 "/src/choqok-" version ".tar.xz"))
43 (sha256
44 (base32 "03ri4y1wzyqlixnhczsls5gmy7jzzm67bb5gz8bav51ngc32fxca"))
45 (patches (search-patches "choqok-Fix-building-under-Qt-5.13.patch"))))
46 (build-system qt-build-system)
47 (native-inputs
48 `(("extra-cmake-modules" ,extra-cmake-modules)
49 ("kdoctools" ,kdoctools)
50 ("pkg-config" ,pkg-config)))
51 (inputs
52 `(("attica" ,attica)
53 ("kcmutils" ,kcmutils)
54 ("kconfigwidgets" ,kconfigwidgets)
55 ("kcoreaddons" ,kcoreaddons)
56 ("kdewebkit" ,kdewebkit)
57 ("kemoticons" ,kemoticons)
58 ("kglobalaccel" ,kglobalaccel)
59 ("kguiaddons" ,kguiaddons)
60 ("ki18n" ,ki18n)
61 ("kio" ,kio)
62 ("knotifications" ,knotifications)
63 ("knotifyconfig" ,knotifyconfig)
64 ("kparts" ,kparts)
65 ("ktextwidgets" ,ktextwidgets)
66 ("kwallet" ,kwallet)
67 ("kwidgetsaddons" ,kwidgetsaddons)
68 ("kxmlgui" ,kxmlgui)
69 ;; TODO: telepathy
70 ("oxygen-icons" ,oxygen-icons) ; default icon set
71 ("qca" ,qca)
72 ("qoauth" ,qoauth)
73 ("qtbase" ,qtbase)
74 ("qtwebkit" ,qtwebkit)
75 ("sonnet" ,sonnet)))
76 (home-page "https://kde.org/applications/internet/org.kde.choqok")
77 (synopsis "Micro-Blogging Client")
78 (description "Choqok is a fast, efficient and simple to use micro-blogging
79client for KDE. It currently supports the twitter.com and identi.ca
80microblogging services.
81
82Other notable features include:
83@itemize
84@item Support for user + friends time-lines.
85@item Support for @Reply time-lines.
86@item Support for sending and receiving direct messages.
87@item Twitpic.com integration.
88@item The ability to use multiple accounts simultaneously.
89@item Support for search APIs for all services.
90@item KWallet integration.
91@item Support for automatic shortening urls with more than 30 characters.
92@item Support for configuring status lists appearance.
93@end itemize")
94 (license license:gpl3+)))