mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add rust-zbase32-0.1.
* gnu/packages/crates-io.scm (rust-zbase32-0.1): New variable.
This commit is contained in:
parent
1431405e3f
commit
cfb9bc26cc
1 changed files with 23 additions and 0 deletions
|
@ -27443,6 +27443,29 @@ (define-public rust-yaml-rust-0.3
|
|||
(("rust-clippy" ,rust-clippy-0.0)
|
||||
("rust-linked-hash-map" ,rust-linked-hash-map-0.3))))))
|
||||
|
||||
(define-public rust-zbase32-0.1
|
||||
(package
|
||||
(name "rust-zbase32")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "zbase32" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0gz3nmiaidscb5c85rh3qxi8i584gz5xm3amlxqminl8jq27k40g"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t ;; dependency cypthon not yet availalbe
|
||||
#:cargo-development-inputs
|
||||
(;; ("rust-cpython" ,rust-cpython-0.2) TODO
|
||||
("rust-quickcheck" ,rust-quickcheck-0.7)
|
||||
("rust-rand" ,rust-rand-0.6))))
|
||||
(home-page "https://gitlab.com/pgerber/zbase32-rust")
|
||||
(synopsis "Implementation of zbase32")
|
||||
(description "This package provides an implementation of zbase32.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public rust-zip-0.5
|
||||
(package
|
||||
(name "rust-zip")
|
||||
|
|
Loading…
Reference in a new issue