me
/
guix
Archived
1
0
Fork 0

gnu: rust-rustc-serialize-0.3: Don't hide package.

* gnu/packages/crates-io.scm (rust-rustc-serialize-0.3)[arguments]: Skip
build. Add rust-rand-0.3 to cargo-inputs.
[properties]: Remove field.
master
Efraim Flashner 2020-01-14 21:10:34 +02:00
parent a23dbdab6d
commit 4de42e8eaf
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 1 deletions

View File

@ -8350,6 +8350,10 @@ uses finite automata and guarantees linear time matching on all inputs.")
(base32 (base32
"1nkg3vasg7nk80ffkazizgiyv3hb1l9g3d8h17cajbkx538jiwfw")))) "1nkg3vasg7nk80ffkazizgiyv3hb1l9g3d8h17cajbkx538jiwfw"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-rand" ,rust-rand-0.3))))
(home-page "https://github.com/rust-lang-deprecated/rustc-serialize") (home-page "https://github.com/rust-lang-deprecated/rustc-serialize")
(synopsis "Generic serialization/deserialization support") (synopsis "Generic serialization/deserialization support")
(description (description
@ -8357,7 +8361,6 @@ uses finite automata and guarantees linear time matching on all inputs.")
corresponding to the @code{derive(RustcEncodable, RustcDecodable)} mode in the corresponding to the @code{derive(RustcEncodable, RustcDecodable)} mode in the
compiler. Also includes support for hex, base64, and json encoding and compiler. Also includes support for hex, base64, and json encoding and
decoding.") decoding.")
(properties '((hidden? . #t)))
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))