diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-04 12:04:42 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-04 12:04:42 +0100 |
commit | e32aea5472007507e62933b27a4db9a50810e5dc (patch) | |
tree | 55ccbe4ed5baf1fd2689b16d7108da8f7be857a9 /gnu/packages/compression.scm | |
parent | fb98351621a6b311d4ff9593d6c22d40a3b3fe8f (diff) | |
parent | d46f9f833b190aac04f7f4683b84a06a291a3f8f (diff) | |
download | patches-e32aea5472007507e62933b27a4db9a50810e5dc.tar patches-e32aea5472007507e62933b27a4db9a50810e5dc.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 2f938f8de2..b7438a323f 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1589,6 +1589,7 @@ recreates the stored directory structure by default.") (package (name "zziplib") (version "0.13.69") + (replacement zziplib/fixed) (home-page "https://github.com/gdraheim/zziplib") (source (origin (method git-fetch) @@ -1626,6 +1627,13 @@ recreates the stored directory structure by default.") ;; files carry the Zlib license; see "docs/copying.html" for details. (license (list license:lgpl2.0+ license:mpl1.1)))) +(define zziplib/fixed + (package + (inherit zziplib) + (source (origin + (inherit (package-source zziplib)) + (patches (search-patches "zziplib-CVE-2018-16548.patch")))))) + (define-public libzip (package (name "libzip") |