2021-06-12 17:10:53 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, libexif
|
|
|
|
, popt
|
|
|
|
, libintl
|
|
|
|
}:
|
2005-03-11 10:46:20 +00:00
|
|
|
|
2012-07-13 17:13:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-04-24 10:08:50 +01:00
|
|
|
pname = "exif";
|
|
|
|
version = "0.6.22";
|
2005-03-11 10:46:20 +00:00
|
|
|
|
2021-04-24 10:08:50 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libexif";
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${builtins.replaceStrings ["."] ["_"] version}-release";
|
|
|
|
sha256 = "1xlb1gdwxm3rmw7vlrynhvjp9dkwmvw23mxisdbdmma7ah2nda3i";
|
2005-03-11 10:46:20 +00:00
|
|
|
};
|
|
|
|
|
2021-06-12 17:10:53 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2021-27815.part-1.patch";
|
|
|
|
url = "https://github.com/libexif/exif/commit/f6334d9d32437ef13dc902f0a88a2be0063d9d1c.patch";
|
|
|
|
sha256 = "0mfx7l8w3w1c2mn5h5d6s7gdfyd91wnml8v0f19v5sdn70hx5aa4";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2021-27815.part-2.patch";
|
|
|
|
url = "https://github.com/libexif/exif/commit/eb84b0e3c5f2a86013b6fcfb800d187896a648fa.patch";
|
|
|
|
sha256 = "11lyvy20maisiyhxgxvm85v5l5ba7p0bpd4m0g4ryli32mrwwy0l";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-04-24 10:08:50 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ libexif popt libintl ];
|
2016-06-09 02:11:03 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://libexif.github.io";
|
2012-07-13 17:13:59 +01:00
|
|
|
description = "A utility to read and manipulate EXIF data in digital photographs";
|
2018-09-11 22:25:43 +01:00
|
|
|
platforms = platforms.unix;
|
2021-04-24 10:08:50 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2012-07-13 17:13:59 +01:00
|
|
|
};
|
2005-03-11 10:46:20 +00:00
|
|
|
}
|