gnu: zstd: Update to 1.3.2.
* gnu/packages/compression.scm (zstd): Update to 1.3.2. [source]: Remove snippet. [license]: Add gpl2, gpl3+, and expat to the list.
This commit is contained in:
parent
f18c94705b
commit
16123d1dee
|
@ -1303,7 +1303,7 @@ RAR archives.")
|
||||||
(define-public zstd
|
(define-public zstd
|
||||||
(package
|
(package
|
||||||
(name "zstd")
|
(name "zstd")
|
||||||
(version "1.3.1")
|
(version "1.3.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/facebook/zstd/archive/v"
|
(uri (string-append "https://github.com/facebook/zstd/archive/v"
|
||||||
|
@ -1311,17 +1311,7 @@ RAR archives.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1imddqjhczira626nf3nqmjwj3wb37xcfcwgkjydv2k6fpfbjbri"))
|
"12krs9k5f408kyn0d7dwxqyc67177mgd14783ay10rafqsim8l5c"))))
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
;; Remove non-free source files.
|
|
||||||
'(begin
|
|
||||||
(for-each delete-file-recursively
|
|
||||||
(list
|
|
||||||
;; Commercial use of the following is not allowed.
|
|
||||||
"examples"
|
|
||||||
"LICENSE-examples"))
|
|
||||||
#t))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -1340,7 +1330,10 @@ zlib. In most scenarios, both compression and decompression can be performed in
|
||||||
trade-off between compression ratio and speed, without affecting decompression
|
trade-off between compression ratio and speed, without affecting decompression
|
||||||
speed.")
|
speed.")
|
||||||
(license (list license:bsd-3 ; the main top-level LICENSE file
|
(license (list license:bsd-3 ; the main top-level LICENSE file
|
||||||
license:bsd-2 ; quite a few files have but 2 clauses
|
license:bsd-2 ; many files explicitly state 2-Clause
|
||||||
|
license:gpl2 ; the mail top-level COPYING file
|
||||||
|
license:gpl3+ ; tests/gzip/*.sh
|
||||||
|
license:expat ; lib/dictBuilder/divsufsort.[ch]
|
||||||
license:public-domain ; zlibWrapper/examples/fitblk*
|
license:public-domain ; zlibWrapper/examples/fitblk*
|
||||||
license:zlib)))) ; zlibWrapper/{gz*.c,gzguts.h}
|
license:zlib)))) ; zlibWrapper/{gz*.c,gzguts.h}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue