diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-18 22:17:22 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-18 22:17:22 +0200 |
commit | efdd545fa74301b7c80cf1758ebcbacd1ed8177a (patch) | |
tree | 0aa47b9b9c06d2ccb9b32811fc3ed3a219ab45a6 /gnu | |
parent | 54f1f72c4390477bebbece1c9beb3065e94fe13a (diff) | |
download | guix-efdd545fa74301b7c80cf1758ebcbacd1ed8177a.tar.gz |
gnu: Add rust-inflections@1.1.1.
* gnu/packages/crates-io.scm (rust-inflections-1.1): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 218c53c416..a1316f963f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -30886,3 +30886,24 @@ formatters with per-field documentation generated for each structure. (description "This package provides a CMSIS-SVD file parser") (license (list license:expat license:asl2.0)))) + +(define-public rust-inflections-1.1 + (package + (name "rust-inflections") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "inflections" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0yl3gas612q25c72lwf04405i87yxr02vgv3ckcnz2fyvhpmhmx2")))) + (build-system cargo-build-system) + (home-page #f) + (synopsis + "High performance inflection transformation library for changing properties of words like the case.") + (description + "High performance inflection transformation library for changing properties of words like the case.") + (license license:expat))) |