mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 10:30:43 +02:00
gnu: rust-lzma: Move to (gnu packages crates-compression).
* gnu/packages/crates-io.scm (rust-lzma-rs-0.3, rust-lzma-rust-0.1, rust-lzma-sys-0.1): Move from here ... * gnu/packages/crates-compression.scm: ... to here. Change-Id: I2b244080a1b437496271829077e29c94afd479dc
This commit is contained in:
parent
e59ac7b758
commit
5d9df0ecd1
2 changed files with 80 additions and 80 deletions
|
@ -1133,6 +1133,86 @@ known as zlib).")
|
||||||
(description "This is the Rust LZ4 sys package.")
|
(description "This is the Rust LZ4 sys package.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-lzma-rs-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-lzma-rs")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "lzma-rs" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0phif4pnjrn28zcxgz3a7z86hhx5gdajmkrndfw4vrkahd682zi9"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
("rust-crc" ,rust-crc-3)
|
||||||
|
("rust-env-logger" ,rust-env-logger-0.9)
|
||||||
|
("rust-log" ,rust-log-0.4))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-rust-lzma" ,rust-rust-lzma-0.5)))) ;; called rust-lzma in crates-io
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config xz))
|
||||||
|
(home-page "https://github.com/gendx/lzma-rs")
|
||||||
|
(synopsis "Codec for LZMA, LZMA2 and XZ written in pure Rust")
|
||||||
|
(description
|
||||||
|
"This package provides a codec for LZMA, LZMA2 and XZ written in pure Rust.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-lzma-rust-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-lzma-rust")
|
||||||
|
(version "0.1.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "lzma-rust" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "12dj3w2pnvx014pzjl8pc115rldgk6cbc7w6lwg24y2d3xfwzvfm"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; Only doc tests, which all fail.
|
||||||
|
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1))))
|
||||||
|
(home-page "https://github.com/dyz1990/sevenz-rust/tree/main/lzma-rust")
|
||||||
|
(synopsis "Codec LZMA/LZMA2")
|
||||||
|
(description
|
||||||
|
"This package provides LZMA/LZMA2 codec ported from tukaani xz for java'.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-lzma-sys-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-lzma-sys")
|
||||||
|
(version "0.1.20")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "lzma-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09sxp20waxyglgn3cjz8qjkspb3ryz2fwx4rigkwvrk46ymh9njz"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin (delete-file-recursively "xz-5.2")))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-cc" ,rust-cc-1)
|
||||||
|
("rust-pkg-config" ,rust-pkg-config-0.3))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config xz))
|
||||||
|
(home-page "https://github.com/alexcrichton/xz2-rs")
|
||||||
|
(synopsis "Bindings to liblzma for lzma and xz stream encoding/decoding")
|
||||||
|
(description
|
||||||
|
"This package contains the raw bindings to liblzma which contains an
|
||||||
|
implementation of LZMA and xz stream encoding/decoding.")
|
||||||
|
(license (list license:asl2.0
|
||||||
|
license:expat))))
|
||||||
|
|
||||||
(define-public rust-miniz-oxide-0.8
|
(define-public rust-miniz-oxide-0.8
|
||||||
(package
|
(package
|
||||||
(name "rust-miniz-oxide")
|
(name "rust-miniz-oxide")
|
||||||
|
|
|
@ -42125,86 +42125,6 @@ Server Protocol.")
|
||||||
("rust-serde-repr" ,rust-serde-repr-0.1)
|
("rust-serde-repr" ,rust-serde-repr-0.1)
|
||||||
("rust-url" ,rust-url-2))))))
|
("rust-url" ,rust-url-2))))))
|
||||||
|
|
||||||
(define-public rust-lzma-rs-0.3
|
|
||||||
(package
|
|
||||||
(name "rust-lzma-rs")
|
|
||||||
(version "0.3.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "lzma-rs" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0phif4pnjrn28zcxgz3a7z86hhx5gdajmkrndfw4vrkahd682zi9"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-byteorder" ,rust-byteorder-1)
|
|
||||||
("rust-crc" ,rust-crc-3)
|
|
||||||
("rust-env-logger" ,rust-env-logger-0.9)
|
|
||||||
("rust-log" ,rust-log-0.4))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-rust-lzma" ,rust-rust-lzma-0.5)))) ;; called rust-lzma in crates-io
|
|
||||||
(native-inputs
|
|
||||||
(list pkg-config xz))
|
|
||||||
(home-page "https://github.com/gendx/lzma-rs")
|
|
||||||
(synopsis "Codec for LZMA, LZMA2 and XZ written in pure Rust")
|
|
||||||
(description
|
|
||||||
"This package provides a codec for LZMA, LZMA2 and XZ written in pure Rust.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-lzma-rust-0.1
|
|
||||||
(package
|
|
||||||
(name "rust-lzma-rust")
|
|
||||||
(version "0.1.6")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "lzma-rust" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "12dj3w2pnvx014pzjl8pc115rldgk6cbc7w6lwg24y2d3xfwzvfm"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:tests? #f ; Only doc tests, which all fail.
|
|
||||||
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1))))
|
|
||||||
(home-page "https://github.com/dyz1990/sevenz-rust/tree/main/lzma-rust")
|
|
||||||
(synopsis "Codec LZMA/LZMA2")
|
|
||||||
(description
|
|
||||||
"This package provides LZMA/LZMA2 codec ported from tukaani xz for java'.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public rust-lzma-sys-0.1
|
|
||||||
(package
|
|
||||||
(name "rust-lzma-sys")
|
|
||||||
(version "0.1.20")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "lzma-sys" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"09sxp20waxyglgn3cjz8qjkspb3ryz2fwx4rigkwvrk46ymh9njz"))
|
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
'(begin (delete-file-recursively "xz-5.2")))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-libc" ,rust-libc-0.2)
|
|
||||||
("rust-cc" ,rust-cc-1)
|
|
||||||
("rust-pkg-config" ,rust-pkg-config-0.3))))
|
|
||||||
(native-inputs
|
|
||||||
(list pkg-config xz))
|
|
||||||
(home-page "https://github.com/alexcrichton/xz2-rs")
|
|
||||||
(synopsis "Bindings to liblzma for lzma and xz stream encoding/decoding")
|
|
||||||
(description
|
|
||||||
"This package contains the raw bindings to liblzma which contains an
|
|
||||||
implementation of LZMA and xz stream encoding/decoding.")
|
|
||||||
(license (list license:asl2.0
|
|
||||||
license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-lzw-0.10
|
(define-public rust-lzw-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-lzw")
|
(name "rust-lzw")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue