gnu: squashfs-tools: Support Zstandard compression.

* gnu/packages/compression.scm (squashfs-tools)[arguments]:
Add "ZSTD_SUPPORT=1" to #:make-flags.
[inputs]: Add zstd:lib.
This commit is contained in:
Tobias Geerinckx-Rice 2021-06-11 00:24:09 +02:00
parent d037bf0294
commit 30508a4f74
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -881,6 +881,7 @@ (define-public squashfs-tools
"XZ_SUPPORT=1"
"LZO_SUPPORT=1"
"LZ4_SUPPORT=1"
"ZSTD_SUPPORT=1"
(string-append "INSTALL_DIR=" %output "/bin"))
#:phases
(modify-phases %standard-phases
@ -892,7 +893,8 @@ (define-public squashfs-tools
`(("lz4" ,lz4)
("lzo" ,lzo)
("xz" ,xz)
("zlib" ,zlib)))
("zlib" ,zlib)
("zstd:lib" ,zstd "lib")))
(home-page "https://github.com/plougher/squashfs-tools")
(synopsis "Tools to create and extract squashfs file systems")
(description