me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-difference-2.0.

* gnu/packages/crates-io.scm (rust-difference-2.0): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 19:40:47 -08:00 committed by Efraim Flashner
parent a68b5dc379
commit 688ac26a85
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -1643,6 +1643,33 @@ hexadecimal, base32, and base64.")
"An LCS based slice and string diffing implementation.")
(license (list license:expat license:asl2.0))))
(define-public rust-difference-2.0
(package
(name "rust-difference")
(version "2.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "difference" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1621wx4k8h452p6xzmzzvm7mz87kxh4yqz0kzxfjj9xmjxlbyk2j"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-getopts" ,rust-getopts-0.2))
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.8)
("rust-term" ,rust-term-0.5))))
(home-page "https://github.com/johannhof/difference.rs")
(synopsis "Rust text diffing and assertion library")
(description
"This package provides a Rust text diffing and assertion library.")
(license license:expat)))
(define-public rust-dirs-1.0
(package
(name "rust-dirs")