mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add kdsoap-ws-discovery-client.
* gnu/packages/kde.scm (kdsoap-ws-discovery-client): New variable. Change-Id: I54673b53072308f4f2a0eda41f44e79037d633a9
This commit is contained in:
parent
7a308f38c1
commit
13da146a07
1 changed files with 26 additions and 0 deletions
|
@ -524,6 +524,32 @@ (define-public kdiagram
|
|||
illustrate project schedules.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public kdsoap-ws-discovery-client
|
||||
(package
|
||||
(name "kdsoap-ws-discovery-client")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/kdsoap-ws-discovery-client/"
|
||||
"/kdsoap-ws-discovery-client-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0yj2ngw4li5r6zhmkh2lb8fdf8ixz6pp5hxsb4342pz72g04glic"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
(list extra-cmake-modules))
|
||||
(inputs (list kdsoap-qt6))
|
||||
(arguments (list
|
||||
;; test require network.
|
||||
#:tests? #f
|
||||
#:configure-flags #~(list "-DQT_MAJOR_VERSION=6")
|
||||
#:qtbase qtbase))
|
||||
(home-page "https://caspermeijn.gitlab.io/kdsoap-ws-discovery-client/")
|
||||
(synopsis "WS-Discovery client library based on KDSoap")
|
||||
(description "This package provides a ws-Discovery client library based on
|
||||
KDSoap.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public kio-extras
|
||||
(package
|
||||
(name "kio-extras")
|
||||
|
|
Loading…
Reference in a new issue