From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47217) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iu155-0007sU-FX for guix-patches@gnu.org; Tue, 21 Jan 2020 16:29:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iu154-00021U-Ef for guix-patches@gnu.org; Tue, 21 Jan 2020 16:29:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42626) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iu154-00021P-Bg for guix-patches@gnu.org; Tue, 21 Jan 2020 16:29:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iu154-0002vc-8v for guix-patches@gnu.org; Tue, 21 Jan 2020 16:29:02 -0500 Subject: [bug#39229] [PATCH 3/7] gnu: Add dolphin-plugins. Resent-Message-ID: From: Hartmut Goebel Date: Tue, 21 Jan 2020 22:27:42 +0100 Message-Id: <20200121212746.16054-3-h.goebel@crazy-compilers.com> In-Reply-To: <20200121212746.16054-1-h.goebel@crazy-compilers.com> References: <20200121212746.16054-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39229@debbugs.gnu.org * gnu/packages/kde-systemtools.scm (dolphin-plugins): New variable. --- gnu/packages/kde-systemtools.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/kde-systemtools.scm b/gnu/packages/kde-systemtools.scm index c982994472..c32beb43ce 100644 --- a/gnu/packages/kde-systemtools.scm +++ b/gnu/packages/kde-systemtools.scm @@ -87,3 +87,31 @@ The main features of Dolphin are: @end itemize") (license ;; GPL for programs, FDL for documentation (list license:gpl2+ license:fdl1.2+)))) + +(define-public dolphin-plugins + (package + (name "dolphin-plugins") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/dolphin-plugins-" version ".tar.xz")) + (sha256 + (base32 "0m9sl5fybk60h7r91a5qfxvwzksg2kxn1bc2ygrr8klm2pv0x1l2")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("dolphin" ,dolphin) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("ktexteditor" ,ktexteditor) + ("kxmlgui" ,kxmlgui) + ("oxygen-icons" ,oxygen-icons) ;; default icon set + ("qtbase" ,qtbase))) + (home-page "http://www.kde.org/") + (synopsis "VCS-Plugins for Dolphin") + (description "This package contains plugins that offer integration in +Dolphin with the version control systems: Bzr, Git, Mercurial, Subversion.") + (license license:gpl2+))) -- 2.21.1