mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
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:
parent
729222e7df
commit
c223074345
1 changed files with 6 additions and 3 deletions
|
@ -140,7 +140,7 @@ (define-module (gnu packages qt)
|
||||||
(define-public qcoro-qt5
|
(define-public qcoro-qt5
|
||||||
(package
|
(package
|
||||||
(name "qcoro-qt5")
|
(name "qcoro-qt5")
|
||||||
(version "0.9.0")
|
(version "0.10.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -149,11 +149,14 @@ (define-public qcoro-qt5
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0pk5ybk6zv7m0wnkl6m3m8sjybmfk6wcn22mmgj942hrc3yrdzci"))))
|
(base32 "0inhjc9zknc64q6gajkljfpm2287arg1j0848ia3rhqcbc53k28b"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(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
|
(native-inputs (list dbus)) ;for tests
|
||||||
(inputs (list qtbase-5 qtdeclarative-5 qtwebsockets-5))
|
(inputs (list qtbase-5 qtdeclarative-5 qtwebsockets-5))
|
||||||
(home-page "https://qcoro.dvratil.cz/")
|
(home-page "https://qcoro.dvratil.cz/")
|
||||||
|
|
Loading…
Reference in a new issue