mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add lzop.
* gnu/packages/compression.scm (lzop): New variable.
This commit is contained in:
parent
112440a7b8
commit
a9f48ff076
1 changed files with 23 additions and 0 deletions
|
@ -238,6 +238,29 @@ (define-public lzo
|
|||
format are designed to be portable across platforms.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public lzop
|
||||
(package
|
||||
(name "lzop")
|
||||
(version "1.03")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.lzop.org/download/lzop-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jdjvc4yjndf7ihmlcsyln2rbnbaxa86q4jskmkmm7ylfy65nhn1"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("lzo" ,lzo)))
|
||||
(home-page "http://www.lzop.org/")
|
||||
(synopsis "Compress or expand files")
|
||||
(description
|
||||
"Lzop is a file compressor which is very similar to gzip. Lzop uses the
|
||||
LZO data compression library for compression services, and its main advantages
|
||||
over gzip are much higher compression and decompression speed (at the cost of
|
||||
some compression ratio).")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public lzip
|
||||
(package
|
||||
(name "lzip")
|
||||
|
|
Loading…
Reference in a new issue