gnu: networkmanager-qt: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (networkmanager-qt): Update to 5.27.0 and fix indentation.
This commit is contained in:
parent
48e789daa8
commit
c3fefc81ce
|
@ -971,41 +971,41 @@ messages.")
|
||||||
(define-public networkmanager-qt
|
(define-public networkmanager-qt
|
||||||
(package
|
(package
|
||||||
(name "networkmanager-qt")
|
(name "networkmanager-qt")
|
||||||
(version "5.24.0")
|
(version "5.27.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (string-append
|
||||||
(uri (string-append "mirror://kde/stable/frameworks/"
|
"mirror://kde/stable/frameworks/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy"))))
|
"0fnj0b2j4v51f12b3v59psdza2krdkidj22b9a9jwn224lg4852y"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
("dbus" ,dbus)
|
("dbus" ,dbus)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
; Headers contain #include <NetworkManager.h> and
|
;; Headers contain #include <NetworkManager.h> and
|
||||||
; #include <libnm/NetworkManager.h>
|
;; #include <libnm/NetworkManager.h>
|
||||||
`(("network-manager" ,network-manager)))
|
`(("network-manager" ,network-manager)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("qtbase" ,qtbase)))
|
`(("qtbase" ,qtbase)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* _
|
(lambda _
|
||||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||||
(zero? (system* "dbus-launch" "ctest" ".")))))))
|
(zero? (system* "dbus-launch" "ctest" ".")))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Qt wrapper for NetworkManager DBus API")
|
(synopsis "Qt wrapper for NetworkManager DBus API")
|
||||||
(description "NetworkManagerQt provides access to all NetworkManager
|
(description "NetworkManagerQt provides access to all NetworkManager
|
||||||
features exposed on DBus. It allows you to manage your connections and control
|
features exposed on DBus. It allows you to manage your connections and control
|
||||||
your network devices and also provides a library for parsing connection settings
|
your network devices and also provides a library for parsing connection settings
|
||||||
which are used in DBus communication.")
|
which are used in DBus communication.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public oxygen-icons
|
(define-public oxygen-icons
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue