gnu: Add kio-extras.
* gnu/packages/kde.scm (kio-extras): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
parent
448df3cde1
commit
263280fd64
|
@ -68,6 +68,7 @@
|
|||
#:use-module (gnu packages ghostscript)
|
||||
#:use-module (gnu packages gimp)
|
||||
#:use-module (gnu packages gl)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages gps)
|
||||
#:use-module (gnu packages graphics)
|
||||
|
@ -443,6 +444,50 @@ a module for implementing ODF Gantt charts, which are bar charts that
|
|||
illustrate project schedules.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public kio-extras
|
||||
(package
|
||||
(name "kio-extras")
|
||||
(version "22.08.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/"
|
||||
version "/src/" name "-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0gzna2ps2qd2js28c97kjpcbah7zz8n4s4932faggc2nz5z5wnyn"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(setenv "HOME" (getcwd))
|
||||
(setenv "TMPDIR" (getcwd))
|
||||
(invoke "ctest" "-E" "testkioarchive")))))))
|
||||
(native-inputs (list extra-cmake-modules dbus kdoctools qttools-5))
|
||||
(inputs (list karchive
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
kcoreaddons
|
||||
kdbusaddons
|
||||
ki18n
|
||||
kdnssd
|
||||
kio
|
||||
solid
|
||||
kbookmarks
|
||||
kguiaddons
|
||||
ksyntaxhighlighting
|
||||
qtbase-5
|
||||
qtsvg-5))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Additional components to increase the functionality of KIO")
|
||||
(description
|
||||
"This package provides additional components to increase
|
||||
the functionality of the KDE resource and network access abstractions.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
|
||||
(define-public kseexpr
|
||||
(package
|
||||
(name "kseexpr")
|
||||
|
|
Reference in New Issue