From f59bfc11175c838fe949f1a699d98a1df82dc337 Mon Sep 17 00:00:00 2001 From: Z572 <873216071@qq.com> Date: Fri, 25 Dec 2020 15:23:53 +0800 Subject: gnu: Add yakuake. * gnu/packages/kde-systemtools.scm (yakuake): New variable. Signed-off-by: Christopher Baines --- gnu/packages/kde-systemtools.scm | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'gnu/packages/kde-systemtools.scm') diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm index 0fbf6e3373..f5d97dae27 100644 --- a/gnu/packages/kde-systemtools.scm +++ b/gnu/packages/kde-systemtools.scm @@ -318,3 +318,52 @@ who want to quickly see problems occurring on their server. This package is part of the KDE administration module.") (license license:gpl2+))) + +(define-public yakuake + (package + (name "yakuake") + (version "20.12.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/yakuake-" version ".tar.xz")) + (sha256 + (base32 + "175vvkpkpbd7nm0lqjyiw27xmfdfcs9syvfngnjlndmlzwagk8d1")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("breeze-icons" ,breeze-icons) + ("karchive" ,karchive) + ("kconfig" ,kconfig) + ("kcoreaddons" ,kcoreaddons) + ("kcrash" ,kcrash) + ("kdbusaddons" ,kdbusaddons) + ("kglobalaccel" ,kglobalaccel) + ("ki18n" ,ki18n) + ("kiconthemes" ,kiconthemes) + ("kio" ,kio) + ("knewstuff" ,knewstuff) + ("knotifications" ,knotifications) + ("knotifyconfig" ,knotifyconfig) + ("konsole" ,konsole) + ("kparts" ,kparts) + ("kwayland" ,kwayland) + ("kwidgetsaddons" ,kwidgetsaddons) + ("kwindowsystem" ,kwindowsystem) + ("qtbase" ,qtbase) + ("qtsvg" ,qtsvg) + ("qtx11extras" ,qtx11extras))) + (home-page "https://www.kde.org/applications/system/yakuake/") + (synopsis "Quad-style terminal emulator for KDE") + (description "Yakuake is a drop-down terminal emulator based on KDE Konsole +technology. Features include: +@itemize +@item Smoothly rolls down from the top of your screen +@item Tabbed interface +@item Configurable dimensions and animation speed +@item Skinnable +@item Sophisticated D-Bus interface +@end itemize") + (license license:gpl2+))) -- cgit v1.2.3 From 5c149f41db8f11e577b7fe224d6c6cd76cbde858 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 9 Jan 2021 22:49:11 +0100 Subject: gnu: yakuake: Update to 20.12.1. * gnu/packages/kde-systemtools.scm (yakuake): Update to 20.12.1. --- gnu/packages/kde-systemtools.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/kde-systemtools.scm') diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm index f5d97dae27..b9c3865a93 100644 --- a/gnu/packages/kde-systemtools.scm +++ b/gnu/packages/kde-systemtools.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017, 2020 Hartmut Goebel +;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -322,14 +323,14 @@ This package is part of the KDE administration module.") (define-public yakuake (package (name "yakuake") - (version "20.12.0") + (version "20.12.1") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/release-service/" version "/src/yakuake-" version ".tar.xz")) (sha256 (base32 - "175vvkpkpbd7nm0lqjyiw27xmfdfcs9syvfngnjlndmlzwagk8d1")))) + "02pal9xx1wbpw7dimvs2aw1xnyjqlvbjlybkkfhf8x7c6m1r63aa")))) (build-system qt-build-system) (native-inputs `(("extra-cmake-modules" ,extra-cmake-modules))) -- cgit v1.2.3