mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
fido2 and cbor are now defined upstream
This commit is contained in:
parent
439a33aca0
commit
76c2691041
1 changed files with 45 additions and 45 deletions
|
@ -53,52 +53,52 @@
|
|||
|
||||
(define-public libcbor-latest libcbor-0.9.0)
|
||||
|
||||
(define-public libfido2-1.8.0
|
||||
(package
|
||||
(name "libfido2")
|
||||
(version "1.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz"))
|
||||
(sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm"))
|
||||
)
|
||||
)
|
||||
(build-system cmake-build-system)
|
||||
(arguments '(
|
||||
#:tests? #f
|
||||
))
|
||||
(inputs `(
|
||||
("libcbor",libcbor-latest)
|
||||
("openssl",openssl)
|
||||
("zlib", zlib)
|
||||
("pkg-config", pkg-config)
|
||||
("eudev", eudev)
|
||||
))
|
||||
(synopsis "libfido2")
|
||||
(description "Todo")
|
||||
(home-page "toto")
|
||||
(license license:gpl2+)
|
||||
)
|
||||
)
|
||||
;(define-public libfido2-1.8.0
|
||||
; (package
|
||||
; (name "libfido2")
|
||||
; (version "1.8.0")
|
||||
; (source
|
||||
; (origin
|
||||
; (method url-fetch)
|
||||
; (uri (string-append "https://developers.yubico.com/libfido2/Releases/libfido2-" version ".tar.gz"))
|
||||
; (sha256 (base32 "07gxyy5yzgfh5hg7q9fr77z5mkj0xjvd5ya7p5f5kar4iwc92hjm"))
|
||||
; )
|
||||
; )
|
||||
; (build-system cmake-build-system)
|
||||
; (arguments '(
|
||||
; #:tests? #f
|
||||
; ))
|
||||
; (inputs `(
|
||||
; ("libcbor",libcbor-latest)
|
||||
; ("openssl",openssl)
|
||||
; ("zlib", zlib)
|
||||
; ("pkg-config", pkg-config)
|
||||
; ("eudev", eudev)
|
||||
; ))
|
||||
; (synopsis "libfido2")
|
||||
; (description "Todo")
|
||||
; (home-page "toto")
|
||||
; (license license:gpl2+)
|
||||
; )
|
||||
;)
|
||||
|
||||
(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"))
|
||||
(sha256 (base32 "1ln2b0zfvl35r03kn2k1i2aw1k3ypvivc71xmp4dzlin6ypy6fds"))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
;(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"))
|
||||
; (sha256 (base32 "1ln2b0zfvl35r03kn2k1i2aw1k3ypvivc71xmp4dzlin6ypy6fds"))
|
||||
; )
|
||||
; )
|
||||
; )
|
||||
;)
|
||||
|
||||
(define libfido2-latest libfido2-1.9.0)
|
||||
;(define libfido2-latest libfido2-1.9.0)
|
||||
|
||||
(define-public openssh-with-fido2
|
||||
(define-public openssh-with-fido2 ;; this is has to be worked again
|
||||
(package
|
||||
(inherit openssh)
|
||||
(name "openssh-with-fido2")
|
||||
|
@ -172,8 +172,8 @@
|
|||
)
|
||||
))
|
||||
(inputs `(
|
||||
("libfido2", libfido2-latest)
|
||||
("libcbor", libcbor-latest)
|
||||
("libfido2", libfido2)
|
||||
("libcbor", libcbor)
|
||||
,@(package-inputs openssh)
|
||||
))
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue