1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: kgraphviewer: Move to kde-graphics.scm.

* gnu/packages/kde-frameworks.scm (kgraphviewer): Remove variable.
* gnu/packages/kde-graphics.scm (kgraphviewer): New variable.
* gnu/packages/kde-sdk.scm: Use (gnu packages kde-graphics) module.
* gnu/packages/linux.scm: Ditto.

Change-Id: I16a15b779b1aea70b0ff56aa3e5f8913bf8af0c5
This commit is contained in:
Sughosha
2025-10-07 15:19:38 +05:30
committed by Andreas Enge
parent 718bde8b7f
commit 94f9db4868
3 changed files with 33 additions and 32 deletions

View File

@@ -65,7 +65,6 @@
#:use-module (gnu packages gnupg)
#:use-module (gnu packages gperf)
#:use-module (gnu packages graphics)
#:use-module (gnu packages graphviz)
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk)
#:use-module (gnu packages hunspell)
@@ -1061,37 +1060,6 @@ infrastructure.")
(inputs
(list avahi qtbase-5))))
(define-public kgraphviewer
(package
(name "kgraphviewer")
(version "2.5.0")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://kde/stable/kgraphviewer/"
version "/" name "-" version ".tar.xz"))
(sha256
(base32
"0s9b3q7wvrbz52d500mcaflkrfjwhbzh5bsf5gxzgxjdzdiywaw7"))))
(build-system cmake-build-system)
(inputs
(list qtbase
boost
graphviz
ki18n
kiconthemes
kparts
qtsvg
qt5compat))
(native-inputs
(list pkg-config extra-cmake-modules kdoctools))
(arguments (list #:tests? #f))
(home-page "https://apps.kde.org/kgraphviewer/")
(synopsis "Graphviz dot graph viewer for KDE")
(description "KGraphViewer is a Graphviz DOT graph file viewer, aimed to
replace the other outdated Graphviz tools.")
(license license:gpl2+)))
(define-public kguiaddons
(package
(name "kguiaddons")

View File

@@ -45,6 +45,7 @@
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages gimp)
#:use-module (gnu packages graphics)
#:use-module (gnu packages graphviz)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages image-processing)
@@ -255,6 +256,37 @@ a module for implementing ODF Gantt charts, which are bar charts that
illustrate project schedules.")
(license license:gpl2+)))
(define-public kgraphviewer
(package
(name "kgraphviewer")
(version "2.5.0")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://kde/stable/kgraphviewer/"
version "/" name "-" version ".tar.xz"))
(sha256
(base32
"0s9b3q7wvrbz52d500mcaflkrfjwhbzh5bsf5gxzgxjdzdiywaw7"))))
(build-system cmake-build-system)
(inputs
(list qtbase
boost
graphviz
ki18n
kiconthemes
kparts
qtsvg
qt5compat))
(native-inputs
(list pkg-config extra-cmake-modules kdoctools))
(arguments (list #:tests? #f))
(home-page "https://apps.kde.org/kgraphviewer/")
(synopsis "Graphviz dot graph viewer for KDE")
(description "KGraphViewer is a Graphviz DOT graph file viewer, aimed to
replace the other outdated Graphviz tools.")
(license license:gpl2+)))
(define-public kolourpaint
(package
(name "kolourpaint")

View File

@@ -153,6 +153,7 @@
#:use-module (gnu packages image)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages libedit)
#:use-module (gnu packages kde-graphics)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libunwind)
#:use-module (gnu packages libusb)