mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
distro: Add XZ.
* distro/base.scm (xz): New variable.
This commit is contained in:
parent
e0fb536aaf
commit
24cf75b9ef
1 changed files with 27 additions and 0 deletions
|
@ -205,6 +205,33 @@ (define-public gzip
|
|||
(license "GPLv3+")
|
||||
(home-page "http://www.gnu.org/software/gzip/")))
|
||||
|
||||
(define-public xz
|
||||
(package
|
||||
(name "xz")
|
||||
(version "5.0.4")
|
||||
(source (origin
|
||||
(method http-fetch)
|
||||
(uri (string-append "http://tukaani.org/xz/xz-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1dl35ca8fdss9z2d6y234gxh24ixq904xksizrjmjr5dimwhax6n"))))
|
||||
(build-system gnu-build-system)
|
||||
(description
|
||||
"XZ, general-purpose data compression software, successor of LZMA")
|
||||
(long-description
|
||||
"XZ Utils is free general-purpose data compression software with high
|
||||
compression ratio. XZ Utils were written for POSIX-like systems, but also
|
||||
work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.
|
||||
|
||||
The core of the XZ Utils compression code is based on LZMA SDK, but it has
|
||||
been modified quite a lot to be suitable for XZ Utils. The primary
|
||||
compression algorithm is currently LZMA2, which is used inside the .xz
|
||||
container format. With typical files, XZ Utils create 30 % smaller output
|
||||
than gzip and 15 % smaller output than bzip2.")
|
||||
(license '("GPLv2+" "LGPLv2.1+")) ; bits of both
|
||||
(home-page "http://tukaani.org/xz/")))
|
||||
|
||||
(define-public patch
|
||||
(package
|
||||
(name "patch")
|
||||
|
|
Loading…
Reference in a new issue