me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-remove-dir-all-0.5.

* gnu/packages/rust-cbindgen.scm (rust-remove-dir-all-0.5): New hidden
variable.
master
Efraim Flashner 2019-10-23 10:01:45 +03:00
parent a8c86afaa5
commit 4b359565de
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -586,3 +586,25 @@ system calls.")
"This package provides a Rust library to access Redox termios functions.")
(properties '((hidden? . #t)))
(license license:expat)))
(define rust-remove-dir-all-0.5
(package
(name "rust-remove-dir-all")
(version "0.5.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "remove-dir-all" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0bkrlyg26mgizpiy1yb2hhpgscxcag8r5fnckqsvk25608vzm0sa"))))
(build-system cargo-build-system)
(home-page "https://github.com/XAMPPRocky/remove_dir_all.git")
(synopsis "Implementation of remove_dir_all for Windows")
(description
"This package provides a safe, reliable implementation of remove_dir_all
for Windows.")
(properties '((hidden? . #t)))
(license (list license:asl2.0
license:expat))))