mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: libfido2: Rewrite using g-exps.
* gnu/packages/security-token.scm (libfido2)[arugments]: Rewrite using g-exps. Remove phases, disable tests.
This commit is contained in:
parent
c498146521
commit
8918e42de0
1 changed files with 10 additions and 11 deletions
|
@ -904,17 +904,16 @@ (define-public libfido2
|
|||
(inputs (list eudev libcbor openssl zlib))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append
|
||||
"-DPKG_CONFIG_EXECUTABLE="
|
||||
(search-input-file %build-inputs
|
||||
(string-append
|
||||
"/bin/" ,(pkg-config-for-target))))
|
||||
(string-append "-DUDEV_RULES_DIR=" %output "/lib/udev/rules.d"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; regress tests enabled only for debug builds
|
||||
(delete 'check))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list (string-append
|
||||
"-DPKG_CONFIG_EXECUTABLE="
|
||||
(search-input-file %build-inputs
|
||||
(string-append
|
||||
"/bin/" #$(pkg-config-for-target))))
|
||||
(string-append "-DUDEV_RULES_DIR=" #$output "/lib/udev/rules.d"))
|
||||
;; regress tests enabled only for debug builds
|
||||
#:tests? #f))
|
||||
(synopsis "Library functionality and command-line tools for FIDO devices")
|
||||
(description "libfido2 provides library functionality and command-line
|
||||
tools to communicate with a FIDO device over USB, and to verify attestation
|
||||
|
|
Loading…
Reference in a new issue