gnu: Add rust-modifier.

* gnu/packages/crates-io.scm (rust-modifier): New variable.
master
Efraim Flashner 2019-08-28 16:02:13 +03:00
parent 33d93a0aec
commit a567cde9b1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -698,6 +698,26 @@ whether an expression matches a pattern.")
(license (list license:asl2.0
license:expat))))
(define-public rust-modifier
(package
(name "rust-modifier")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "modifier" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0n3fmgli1nsskl0whrfzm1gk0rmwwl6pw1q4nb9sqqmn5h8wkxa1"))))
(build-system cargo-build-system)
(home-page "https://github.com/reem/rust-modifier")
(synopsis
"Chaining APIs for both self -> Self and &mut self methods.")
(description
"Chaining APIs for both self -> Self and &mut self methods.")
(license license:expat)))
(define-public rust-num-integer
(package
(name "rust-num-integer")