mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: libexif: Update to 0.6.24. [fixes CVE-2020-0198, CVE-2020-0452]
* gnu/packages/photo.scm (libexif): Update to 0.6.24. [source]: Switch to git checkout. [native-inputs]: Add autoconf, automake, gettext-minimal and libtool. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
39b06acc6e
commit
41118bb4e4
1 changed files with 8 additions and 9 deletions
|
@ -207,22 +207,21 @@ (define-public libraw
|
||||||
;; both two licensing modes for your changes/additions."
|
;; both two licensing modes for your changes/additions."
|
||||||
(license (list license:lgpl2.1 license:cddl1.0))))
|
(license (list license:lgpl2.1 license:cddl1.0))))
|
||||||
|
|
||||||
|
|
||||||
(define-public libexif
|
(define-public libexif
|
||||||
(package
|
(package
|
||||||
(name "libexif")
|
(name "libexif")
|
||||||
(version "0.6.22")
|
(version "0.6.24")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/libexif/libexif/releases"
|
(url "https://github.com/libexif/libexif.git")
|
||||||
"/download/libexif-"
|
(commit (string-append "v" version))))
|
||||||
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version)
|
(file-name (git-file-name name version))
|
||||||
"-release/libexif-" version ".tar.xz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0mhcad5zab7fsn120rd585h8ncwkq904nzzrq8vcd72hzk4g2j2h"))))
|
"0zi5vvb0khlzc6xyfayk6mjx5lgkrj8r7s8lfv4j7wkcgndjga0j"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs (list autoconf automake gettext-minimal libtool))
|
||||||
(home-page "https://libexif.github.io/")
|
(home-page "https://libexif.github.io/")
|
||||||
(synopsis "Read and manipulate EXIF data in digital photographs")
|
(synopsis "Read and manipulate EXIF data in digital photographs")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue