gnu: qcoro-qt5: Update to 0.10.0.

* gnu/packages/qt.scm (qcoro-qt5): Update to 0.10.0.
[arguments]<#:configure-flags>: Set USE_QT_VERSION from input qtbase.

Change-Id: I7b76f87ae9cce3da6746625aefa9cb9b86c93d89
This commit is contained in:
Zheng Junjie 2024-07-05 23:08:10 +08:00
parent 729222e7df
commit c223074345
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -140,7 +140,7 @@ (define-module (gnu packages qt)
(define-public qcoro-qt5
(package
(name "qcoro-qt5")
(version "0.9.0")
(version "0.10.0")
(source
(origin
(method git-fetch)
@ -149,11 +149,14 @@ (define-public qcoro-qt5
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0pk5ybk6zv7m0wnkl6m3m8sjybmfk6wcn22mmgj942hrc3yrdzci"))))
(base32 "0inhjc9zknc64q6gajkljfpm2287arg1j0848ia3rhqcbc53k28b"))))
(build-system qt-build-system)
(arguments
(list #:configure-flags
#~(list "-DUSE_QT_VERSION=5")))
#~(list (string-append "-DUSE_QT_VERSION="
#$(version-major
(package-version
(this-package-input "qtbase")))))))
(native-inputs (list dbus)) ;for tests
(inputs (list qtbase-5 qtdeclarative-5 qtwebsockets-5))
(home-page "https://qcoro.dvratil.cz/")