gnu: Add rust-rustdoc-stripper-0.1.

* gnu/packages/crates-io.scm (rust-rustdoc-stripper-0.1): New variable.
This commit is contained in:
Efraim Flashner 2020-03-18 22:32:39 +02:00
parent 818794ee28
commit 87a3a185fe
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -14750,6 +14750,29 @@ (define-public rust-rustc-version-0.2
rustc compiler.")
(license (list license:expat license:asl2.0))))
(define-public rust-rustdoc-stripper-0.1
(package
(name "rust-rustdoc-stripper")
(version "0.1.9")
(source
(origin
(method url-fetch)
(uri (crate-uri "rustdoc-stripper" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"13rf65a0xk1zyb92jd8p12x529rsbfchwk9zvjr0snr9savpxw19"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-tempfile" ,rust-tempfile-3.1))))
(home-page "https://github.com/GuillaumeGomez/rustdoc-stripper")
(synopsis "Nanipulate rustdoc comments")
(description
"This package provides a tool to manipulate rustdoc comments.")
(license license:asl2.0)))
(define-public rust-rustfix-0.4
(package
(name "rust-rustfix")