mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add nitrokey-app.
* gnu/packages/crates-io.scm (nitrokey-app): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
26d0f1ec3b
commit
41000d16c5
1 changed files with 30 additions and 0 deletions
|
@ -772,6 +772,36 @@ (define-public cppcodec
|
|||
base64url, base32, base32hex and hex.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public nitrokey-app
|
||||
(package
|
||||
(name "nitrokey-app")
|
||||
(version "1.4.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Nitrokey/nitrokey-app")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1imbvaf0yncz36ckjr99x94jwg2hnid49hsiqlxsv7ccxgk058bk"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ;no test suite
|
||||
(native-inputs (list pkg-config qttools))
|
||||
(inputs (list cppcodec
|
||||
hidapi
|
||||
libnitrokey
|
||||
libusb
|
||||
qtbase-5
|
||||
qtsvg))
|
||||
(home-page "https://github.com/Nitrokey/nitrokey-app")
|
||||
(synopsis "GUI tool for Nitrokey devices")
|
||||
(description
|
||||
"This package provides GUI tool that interfaces with Nitrokey Pro
|
||||
v0.7/v0.8 and Nitrokey Storage devices.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public nitrocli
|
||||
(package
|
||||
(name "nitrocli")
|
||||
|
|
Loading…
Reference in a new issue