me
/
guix
Archived
1
0
Fork 0

gnu: Add qmdnsengine.

* gnu/packages/qt.scm (qmdnsengine): New variable.

Change-Id: I6838ed2574424c03ecbb21d9265d6a33c3cb4c91
master
Petr Hodina 2024-01-21 14:48:15 +03:00 committed by Oleg Pykhalov
parent 2d83a25450
commit 646c1c093f
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 26 additions and 0 deletions

View File

@ -156,6 +156,32 @@
of C++20 coroutines in connection with certain asynchronous Qt actions.")
(license license:expat)))
(define-public qmdnsengine
;; Used as submodule in https://github.com/moonlight-stream/moonlight-qt
(let ((commit "b7a5a9f225d5e14b39f9fd1f905c4f505cf2ee99")
(revision "1"))
(package
(name "qmdnsengine")
(version (git-version "0.0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cgutman/qmdnsengine")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1f5v5n9w4aszcdjxmw81cwmd26ssywvfiyr8x0vbyamp4kqd8mww"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags (list "-DBUILD_TESTS=ON")))
(inputs (list qtbase-5))
(synopsis "Multicast DNS library for Qt application")
(description "This package provides multicast DNS library for Qt
applications.")
(home-page "https://github.com/moonlight-stream/moonlight-common-c")
(license license:expat))))
(define-public qite
(let ((commit "75fb3b6bbd5c6a5a8fc35e08a6efbfb588ed546a")
(revision "74"))