gnu: Add rust-pathdiff-0.1.

* gnu/packages/crates-io.scm (rust-pathdiff-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2020-06-17 16:18:54 -07:00 committed by Efraim Flashner
parent 200df76aae
commit 531f0f933a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -18356,6 +18356,27 @@ (define-public rust-path-clean-0.1
path.Clean.")
(license (list license:expat license:asl2.0))))
(define-public rust-pathdiff-0.1
(package
(name "rust-pathdiff")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "pathdiff" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0cfg3isnx6mf3wbi7rsg4nmvywby40sbcs589n20fgi09l4p1gx3"))))
(build-system cargo-build-system)
(home-page "https://github.com/Manishearth/pathdiff")
(synopsis "Library for diffing paths to obtain relative paths")
(description
"Use diff_paths to construct a relative path from a provided base
directory path to the provided path.")
(license (list license:asl2.0 license:expat))))
(define-public rust-pbkdf2-0.4
(package
(name "rust-pbkdf2")