mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add dolphin-plugins.
* gnu/packages/kde-systemtools.scm (dolphin-plugins): New variable.
This commit is contained in:
parent
af204f933f
commit
a4317df4c8
1 changed files with 28 additions and 0 deletions
|
@ -86,3 +86,31 @@ (define-public dolphin
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license ;; GPL for programs, FDL for documentation
|
(license ;; GPL for programs, FDL for documentation
|
||||||
(list license:gpl2+ license:fdl1.2+))))
|
(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+)))
|
||||||
|
|
Loading…
Reference in a new issue