[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: Add konsole.
From: |
guix-commits |
Subject: |
05/07: gnu: Add konsole. |
Date: |
Tue, 28 Jan 2020 07:09:14 -0500 (EST) |
htgoebel pushed a commit to branch staging
in repository guix.
commit c1827284e6a8e674c019bbc6e747525d44186280
Author: Hartmut Goebel <address@hidden>
AuthorDate: Mon Jan 20 22:52:09 2020 +0100
gnu: Add konsole.
* gnu/packages/kde-systemtools.scm (konsole): New variable.
---
gnu/packages/kde-systemtools.scm | 55 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm
index 9a7c0f0..ded6958 100644
--- a/gnu/packages/kde-systemtools.scm
+++ b/gnu/packages/kde-systemtools.scm
@@ -158,3 +158,58 @@ Dolphin with the version control systems: Bzr, Git,
Mercurial, Subversion.")
(synopsis "KDE documentation viewer")
(description "KDE documentation viewer")
(license license:gpl2+)))
+
+(define-public konsole
+ (package
+ (name "konsole")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/konsole-" version ".tar.xz"))
+ (sha256
+ (base32 "09bhgqjnqlpxkkgdpn35pvj747ab7waz10zalvpwdpgqkw811iic"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("kbookmarks" ,kbookmarks)
+ ("kcompletion" ,kcompletion)
+ ("kconfig" ,kconfig)
+ ("kconfigwidgets" ,kconfigwidgets)
+ ("kcoreaddons" ,kcoreaddons)
+ ("kcrash" ,kcrash)
+ ("kdbusaddons" ,kdbusaddons)
+ ("kguiaddons" ,kguiaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kinit" ,kinit)
+ ("kio" ,kio)
+ ("knewstuff" ,knewstuff)
+ ("kglobalaccel" ,kglobalaccel)
+ ("knotifications" ,knotifications)
+ ("knotifyconfig" ,knotifyconfig)
+ ("kparts" ,kparts)
+ ("kpty" ,kpty)
+ ("kservice" ,kservice)
+ ("ktextwidgets" ,ktextwidgets)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kwindowsystem" ,kwindowsystem)
+ ("kxmlgui" ,kxmlgui)
+ ("oxygen-icons" ,oxygen-icons) ;; default icon set
+ ("qtbase" ,qtbase)
+ ("qtscript" ,qtscript)))
+ (arguments
+ `(#:tests? #f)) ;; TODO: 2/15 tests fail even with HOME, offscreen,
SHELL, debus
+ (home-page "http://www.kde.org/")
+ (synopsis "Terminal emulator similar for KDE")
+ (description "Konsole is a terminal emulator, similar to xterm, built on
+the KDE Platform. It can contain multiple terminal sessions inside one window
+using detachable tabs. Konsole supports customizable schemes, saved sessions,
+output monitoring and more.
+
+This package is part of the KDE base applications module.")
+ (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+ (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
- branch staging updated (cd165d1 -> 7059b1a), guix-commits, 2020/01/28
- 01/07: gnu: Add baloo-widgets., guix-commits, 2020/01/28
- 03/07: gnu: Add dolphin-plugins., guix-commits, 2020/01/28
- 07/07: gnu: Add ksystemlog., guix-commits, 2020/01/28
- 05/07: gnu: Add konsole.,
guix-commits <=
- 06/07: gnu: Add krfb., guix-commits, 2020/01/28
- 04/07: gnu: Add khelpcenter., guix-commits, 2020/01/28
- 02/07: gnu: Add dolphin., guix-commits, 2020/01/28