mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 11:30:44 +02:00
gnu: zziplib: Update to 0.13.72 [security fixes].
Non-exhaustively, fixes CVE-2018-16548 and CVE-2018-17828. * gnu/packages/compression.scm (zziplib/fixed): New variable. (zziplib)[replacement]: Graft.
This commit is contained in:
parent
b8e71b390d
commit
f7fdafeff5
1 changed files with 23 additions and 1 deletions
|
@ -87,7 +87,7 @@
|
||||||
#:use-module (gnu packages version-control)
|
#:use-module (gnu packages version-control)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module ((srfi srfi-1) #:select (last)))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
(define-public zlib
|
(define-public zlib
|
||||||
(package
|
(package
|
||||||
|
@ -1728,6 +1728,7 @@ timestamps in the file header with a fixed time (1 January 2008).
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fbk9k7ryas2wh2ykwkvm1pbi40i88rfvc3dydh9xyd7w2jcki92"))))
|
"0fbk9k7ryas2wh2ykwkvm1pbi40i88rfvc3dydh9xyd7w2jcki92"))))
|
||||||
|
(replacement zziplib/fixed)
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
@ -1756,6 +1757,27 @@ timestamps in the file header with a fixed time (1 January 2008).
|
||||||
;; files carry the Zlib license; see "docs/copying.html" for details.
|
;; files carry the Zlib license; see "docs/copying.html" for details.
|
||||||
(license (list license:lgpl2.0+ license:mpl1.1))))
|
(license (list license:lgpl2.0+ license:mpl1.1))))
|
||||||
|
|
||||||
|
(define-public zziplib/fixed
|
||||||
|
(package
|
||||||
|
(inherit zziplib)
|
||||||
|
(name "zziplib")
|
||||||
|
(version "0.13.72")
|
||||||
|
(home-page "https://github.com/gdraheim/zziplib")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference (url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0i6bpa2b13z19alm6ig80364dnin1w28cvif18k6wkkb0w3dzp8y"))))
|
||||||
|
(arguments `())
|
||||||
|
(native-inputs
|
||||||
|
`(("python" ,python)
|
||||||
|
,@(alist-delete "python"
|
||||||
|
(package-native-inputs zziplib))))
|
||||||
|
(build-system cmake-build-system)))
|
||||||
|
|
||||||
(define-public libzip
|
(define-public libzip
|
||||||
(package
|
(package
|
||||||
(name "libzip")
|
(name "libzip")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue