mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add cppcodec.
* gnu/packages/crates-io.scm (cppcodec): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
aff2ba67e2
commit
26d0f1ec3b
1 changed files with 24 additions and 0 deletions
|
@ -748,6 +748,30 @@ (define-public libnitrokey
|
||||||
(description "This packate provides communication library for Nitrokey.")
|
(description "This packate provides communication library for Nitrokey.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public cppcodec
|
||||||
|
(package
|
||||||
|
(name "cppcodec")
|
||||||
|
(version "0.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/tplgy/cppcodec")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0z39f8w0zvra874az0f67ck1al9kbpaidpilggbl8jnfs05010ck"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags (list "-DBUILD_TESTING=on")))
|
||||||
|
(native-inputs (list pkg-config qttools))
|
||||||
|
(inputs (list catch-framework2))
|
||||||
|
(home-page "https://github.com/tplgy/cppcodec")
|
||||||
|
(synopsis "Header library to encode/decode base64, base64url, etc.")
|
||||||
|
(description "This package provides library to encode/decode base64,
|
||||||
|
base64url, base32, base32hex and hex.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public nitrocli
|
(define-public nitrocli
|
||||||
(package
|
(package
|
||||||
(name "nitrocli")
|
(name "nitrocli")
|
||||||
|
|
Loading…
Reference in a new issue