diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-09-05 16:39:10 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-09-06 15:45:57 +0300 |
commit | 90c48ddd76a8c2926d271d68199bb96537a483de (patch) | |
tree | cb24f1fc58a84239a62acfd3d45f1d833c470822 | |
parent | f81d58b8b3735282114e2a5c29b123e08afa7520 (diff) | |
download | patches-90c48ddd76a8c2926d271d68199bb96537a483de.tar patches-90c48ddd76a8c2926d271d68199bb96537a483de.tar.gz |
gnu: Add rust-adler32.
* gnu/packages/crates-io.scm (rust-adler32): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 262c1e4116..753b144c46 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -30,6 +30,30 @@ ;;; Please: Try to add new module packages in alphabetic order. ;;; +(define-public rust-adler32 + (package + (name "rust-adler32") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "adler32" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0p7fxlnks9l7p7rwfqi7aqgnk2bps5zc0rjiw00mdw19nnbjjlky")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-development-inputs (("rust-rand" ,rust-rand)))) + (home-page "https://github.com/remram44/adler32-rs") + (synopsis "Implementation of the Adler32 rolling hash algorithm") + (description + "This library is an implementation of the Adler32 rolling hash algorithm in +the Rust programming language.") + (license (list license:bsd-3 + license:zlib)))) + (define-public rust-antidote (package (name "rust-antidote") |