mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: bluez-qt: Remove reference to '%output'.
* gnu/packages/kde-frameworks.scm (bluez-qt)[arguments]: Replace reference to '%output' by a gexp.
This commit is contained in:
parent
71e47839ba
commit
7fa47c0716
1 changed files with 7 additions and 6 deletions
|
@ -33,6 +33,7 @@ (define-module (gnu packages kde-frameworks)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages acl)
|
||||
#:use-module (gnu packages admin)
|
||||
|
@ -294,12 +295,12 @@ (define-public bluez-qt
|
|||
;; TODO: qtdeclarative (yields one failing test)
|
||||
`(("qtbase" ,qtbase-5)))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append
|
||||
"-DUDEV_RULES_INSTALL_DIR=" %output "/lib/udev/rules.d"))
|
||||
;; TODO: Make tests pass: DBUS_FATAL_WARNINGS=0 still yields 7/8 tests
|
||||
;; failing. When running after install, tests hang.
|
||||
#:tests? #f))
|
||||
(list #:configure-flags
|
||||
#~(list (string-append
|
||||
"-DUDEV_RULES_INSTALL_DIR=" #$output "/lib/udev/rules.d"))
|
||||
;; TODO: Make tests pass: DBUS_FATAL_WARNINGS=0 still yields 7/8 tests
|
||||
;; failing. When running after install, tests hang.
|
||||
#:tests? #f))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "QML wrapper for BlueZ")
|
||||
(description "bluez-qt is a Qt-style library for accessing the bluez
|
||||
|
|
Loading…
Reference in a new issue