me
/
guix
Archived
1
0
Fork 0

gnu: Add libnitrokey.

* gnu/packages/security-token.scm (libnitrokey): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Petr Hodina 2022-02-05 23:25:44 +01:00 committed by Ludovic Courtès
parent de74438909
commit aff2ba67e2
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 25 additions and 0 deletions

View File

@ -15,6 +15,7 @@
;;; Copyright © 2021 Dhruvin Gandhi <contact@dhruvin.dev>
;;; Copyright © 2021 Ahmad Jarara <git@ajarara.io>
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -723,6 +724,30 @@ udev rules to your system configuration to be able to configure the YubiKey as
an unprivileged user.")
(license license:bsd-2)))
(define-public libnitrokey
(package
(name "libnitrokey")
(version "3.6")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Nitrokey/libnitrokey")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0ngrvv61d36vvfwrfg0qxmp2wg18v4aaldwvwzgxvwaysjswhn9r"))))
(build-system cmake-build-system)
(arguments
;; These tests do not require any device to be connected
'(#:configure-flags (list "-DCOMPILE_OFFLINE_TESTS=ON")))
(native-inputs (list catch-framework2 doxygen graphviz pkg-config))
(inputs (list hidapi libusb))
(home-page "https://github.com/Nitrokey/libnitrokey")
(synopsis "Communication library for Nitrokey")
(description "This packate provides communication library for Nitrokey.")
(license license:lgpl3+)))
(define-public nitrocli
(package
(name "nitrocli")