me
/
guix
Archived
1
0
Fork 0

gnu: libzip: Support Zstandard.

* gnu/packages/compression.scm (libzip)[native-inputs]: Add pkg-config.
[inputs]: Add zstd:lib.
master
Tobias Geerinckx-Rice 2021-07-01 20:41:05 +02:00
parent 85c54e0e7c
commit 5b35276140
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 2 deletions

View File

@ -1980,12 +1980,14 @@ timestamps in the file header with a fixed time (1 January 2008).
(base32
"0zn9vaiwy2izj8cnm8i7c2mbdn38n328grqb8f07x55s4kd3nxph"))))
(native-inputs
`(("perl" ,perl)))
`(("perl" ,perl)
("pkg-config" ,pkg-config)))
(inputs
`(("gnutls" ,gnutls)
("liblzma" ,xz)
("openssl" ,openssl)
("zlib" ,zlib)))
("zlib" ,zlib)
("zstd:lib" ,zstd "lib")))
(build-system cmake-build-system)
(home-page "https://libzip.org")
(synopsis "C library for reading, creating, and modifying zip archives")