mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add kgraphviewer.
* gnu/packages/kde-frameworks.scm (kgraphviewer): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
72926ce5e5
commit
5a402e0302
1 changed files with 32 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
;;; Copyright © 2021 Alexandros Theodotou <alex@zrythm.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -55,6 +56,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages gperf)
|
#:use-module (gnu packages gperf)
|
||||||
#:use-module (gnu packages graphics)
|
#:use-module (gnu packages graphics)
|
||||||
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
|
@ -695,6 +697,36 @@ such as printers, to be discovered without any user intervention or centralized
|
||||||
infrastructure.")
|
infrastructure.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public kgraphviewer
|
||||||
|
(package
|
||||||
|
(name "kgraphviewer")
|
||||||
|
(version "2.4.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://kde/stable/kgraphviewer/"
|
||||||
|
version "/" name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1h6pgg89gvxl8gw7wmkabyqqrzad5pxyv5lsmn1fl4ir8lcc5q2l"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)
|
||||||
|
("boost" ,boost)
|
||||||
|
("graphviz" ,graphviz)
|
||||||
|
("kiconthemes" ,kiconthemes)
|
||||||
|
("kparts" ,kparts)
|
||||||
|
("qtsvg" ,qtsvg)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
("kdoctools" ,kdoctools)))
|
||||||
|
(home-page "https://apps.kde.org/en/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
|
(define-public kguiaddons
|
||||||
(package
|
(package
|
||||||
(name "kguiaddons")
|
(name "kguiaddons")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue