gnu: rust-adler32-1.0: Don't hide package.

* gnu/packages/crates-io.scm (rust-adler32-1.0)[arguments]: Skip build.
Add rust-rand-0.4 to cargo-development-inputs.
[properties]: Remove field.
This commit is contained in:
Efraim Flashner 2020-01-14 12:17:52 +02:00
parent 5c3d77c3b1
commit bd97d1b0c0
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -45,12 +45,15 @@ (define-public rust-adler32-1.0
(base32 (base32
"0p7fxlnks9l7p7rwfqi7aqgnk2bps5zc0rjiw00mdw19nnbjjlky")))) "0p7fxlnks9l7p7rwfqi7aqgnk2bps5zc0rjiw00mdw19nnbjjlky"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.4))))
(home-page "https://github.com/remram44/adler32-rs") (home-page "https://github.com/remram44/adler32-rs")
(synopsis "Implementation of the Adler32 rolling hash algorithm") (synopsis "Implementation of the Adler32 rolling hash algorithm")
(description (description
"This library is an implementation of the Adler32 rolling hash algorithm in "This library is an implementation of the Adler32 rolling hash algorithm in
the Rust programming language.") the Rust programming language.")
(properties '((hidden? . #t)))
(license (list license:bsd-3 (license (list license:bsd-3
license:zlib)))) license:zlib))))