diff options
author | Petr Hodina <phodina@protonmail.com> | 2024-01-21 14:48:15 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2024-01-21 16:00:16 +0300 |
commit | 646c1c093ffea32b30edc2e5402bea215e59b75f (patch) | |
tree | d0bd6e3a023924698db7adfbf2bcf8f98b33c0da /gnu | |
parent | 2d83a25450d4b820c13d52152e5e9f1bbfb5d985 (diff) |
gnu: Add qmdnsengine.
* gnu/packages/qt.scm (qmdnsengine): New variable.
Change-Id: I6838ed2574424c03ecbb21d9265d6a33c3cb4c91
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index a6bbc2429a..3e84e7a416 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -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")) |