mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: lz4: Update to 1.7.4.2.
* gnu/packages/compression.scm (lz4): Update to 1.7.4.2.
This commit is contained in:
parent
dead1067c3
commit
fc89cb691d
1 changed files with 5 additions and 5 deletions
|
@ -603,24 +603,24 @@ (define-public perl-io-compress
|
||||||
(define-public lz4
|
(define-public lz4
|
||||||
(package
|
(package
|
||||||
(name "lz4")
|
(name "lz4")
|
||||||
(version "131")
|
(version "1.7.4.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/Cyan4973/lz4/archive/"
|
(uri (string-append "https://github.com/Cyan4973/lz4/archive/"
|
||||||
"r" version ".tar.gz"))
|
"v" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1vfg305zvj50hwscad24wan9jar6nqj14gdk2hqyr7bb9mhh0kcx"))
|
(base32 "0l39bymif15rmmfz7h6wvrr853rix4wj8wbqq8z8fm49xa7gx9fb"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (string-append name "-" version ".tar.gz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs `(("valgrind" ,valgrind)))
|
(native-inputs `(("valgrind" ,valgrind))) ; for tests
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
#:parallel-tests? #f ; tests fail if run in parallel
|
#:parallel-tests? #f ; tests fail if run in parallel
|
||||||
#:make-flags (list "CC=gcc"
|
#:make-flags (list "CC=gcc"
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure)))) ; no configure script
|
||||||
(home-page "https://github.com/Cyan4973/lz4")
|
(home-page "https://github.com/Cyan4973/lz4")
|
||||||
(synopsis "Compression algorithm focused on speed")
|
(synopsis "Compression algorithm focused on speed")
|
||||||
(description "LZ4 is a lossless compression algorithm, providing
|
(description "LZ4 is a lossless compression algorithm, providing
|
||||||
|
|
Loading…
Reference in a new issue