me
/
guix
Archived
1
0
Fork 0

gnu: rust-tar-0.4: Don't hide package.

* gnu/packages/crates-io.scm (rust-tar-0.4)[arguments]: Skip tests. Add
rust-filetime-0.2, rust-libc-0.2, rust-redox-syscall-0.1, rust-xattr-0.2
to cargo-inputs. Add rust-tempdir-0.3 to cargo-development-inputs.
[properties]: Remove field.
master
Efraim Flashner 2020-02-18 11:09:48 +02:00
parent 96737ce3be
commit 25b4a363e1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 1 deletions

View File

@ -13239,6 +13239,15 @@ syntax extension expansion.")
(base32 (base32
"1lr6v3cpkfxd2lk5ll2jd8wr1xdskwj35smnh5sfb8xvzzxnn6dk")))) "1lr6v3cpkfxd2lk5ll2jd8wr1xdskwj35smnh5sfb8xvzzxnn6dk"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments
`(#:tests? #f ; Test tarballs not included in crate.
#:cargo-inputs
(("rust-filetime" ,rust-filetime-0.2)
("rust-libc" ,rust-libc-0.2)
("rust-redox-syscall" ,rust-redox-syscall-0.1)
("rust-xattr" ,rust-xattr-0.2))
#:cargo-development-inputs
(("rust-tempdir" ,rust-tempdir-0.3))))
(home-page "https://github.com/alexcrichton/tar-rs") (home-page "https://github.com/alexcrichton/tar-rs")
(synopsis "Tar file reading/writing for Rust") (synopsis "Tar file reading/writing for Rust")
(description (description
@ -13247,7 +13256,6 @@ writer. This library does not currently handle compression, but it is abstract
over all I/O readers and writers. Additionally, great lengths are taken to over all I/O readers and writers. Additionally, great lengths are taken to
ensure that the entire contents are never required to be entirely resident in ensure that the entire contents are never required to be entirely resident in
memory all at once.") memory all at once.")
(properties '((hidden? . #t)))
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))