new libfido2

This commit is contained in:
Yann Dupont 2021-11-23 22:32:00 +01:00
parent 51a4636347
commit 2fb272b6d6

View file

@ -152,10 +152,10 @@
)) ))
(define-public glicid-libfido2 (define-public libfido2-1.8.0
(package (package
(name "glicid-libfido2") (name "libfido2")
(version "1.8.0") (version "1.8.0")
(source (source
(origin (origin
@ -193,6 +193,23 @@
) )
(define-public libfido2-1.9.0
(package
(inherit libfido2-1.8.0)
(version "1.9.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz"))
; (file-name (string-append name "-" version ".tar.gz"))
(sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm"))
)
)
)
)
(define libfido2-latest libfido2-1.9.0)
(define-public glicid-specific-openssh (define-public glicid-specific-openssh
(package (package
(inherit openssh) (inherit openssh)
@ -273,7 +290,7 @@
) )
) )
(inputs `(("glicid-libfido2", glicid-libfido2) (inputs `(("libfido2", libfido2-latest)
("glicid-libcbor", glicid-libcbor) ("glicid-libcbor", glicid-libcbor)
,@(package-inputs openssh))) ,@(package-inputs openssh)))