diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-13 22:21:11 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:38:14 +0300 |
commit | 406258050314a27c3db2de6c9c9c08c25e7bc57f (patch) | |
tree | 5996a6d16ffebcc9b509e008e10204a0f8e97831 /gnu | |
parent | 560df3d1768ae42de871c0d763920a5b55d1b8c7 (diff) | |
download | guix-406258050314a27c3db2de6c9c9c08c25e7bc57f.tar.gz |
gnu: Add rust-xz-0.1.
* gnu/packages/crates-io.scm (rust-xz-0.1): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 351f50c3f8..e800bf2c2d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -77601,6 +77601,29 @@ file into an in-memory tree structure.") algorithm in Rust.") (license license:boost1.0))) +(define-public rust-xz-0.1 + (package + (name "rust-xz") + (version "0.1.0") + (source (origin + (method url-fetch) + (uri (crate-uri "xz" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0d6sq57g1969hjl5k7gzzdbyr60za9hk8qs9iqz26biazy87d21w")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-xz2" ,rust-xz2-0.1)))) + (native-inputs + (list pkg-config xz)) + (home-page "https://github.com/alexcrichton/xz2-rs") + (synopsis "Alias of `xz2` crate") + (description + "Rust bindings to @code{liblzma} providing Read/Write streams as well as +low-level in-memory encoding/decoding. Alias of @code{xz2} crate.") + (license (list license:expat license:asl2.0)))) + (define-public rust-xz2-0.1 (package (name "rust-xz2") |