diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-02-05 23:25:44 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-02-14 15:52:37 +0100 |
commit | aff2ba67e21cd236a6cbf70ae483d527d4bed8ef (patch) | |
tree | 63fb15b1716deb92d1dfb077c1e50005e1fc3fa7 /gnu | |
parent | de744389092246fa95d00f17c8571e913f19de60 (diff) |
gnu: Add libnitrokey.
* gnu/packages/security-token.scm (libnitrokey): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/security-token.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 8190e1e1e2..c71bb85843 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -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") |