mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
d037bf0294
commit
30508a4f74
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue