ae67368e54
Addresses CVE-2012-2812, CVE-2012-2813, CVE-2012-2814, CVE-2012-2836, CVE-2012-2837, CVE-2012-2840, CVE-2012-2841 and CVE-2012-2845.
20 lines
448 B
Nix
20 lines
448 B
Nix
{ stdenv, fetchurl, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libexif-0.6.21";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libexif/${name}.tar.bz2";
|
|
sha256 = "06nlsibr3ylfwp28w8f5466l6drgrnydgxrm4jmxzrmk5svaxk8n";
|
|
};
|
|
|
|
buildInputs = [ gettext ];
|
|
|
|
meta = {
|
|
homepage = http://libexif.sourceforge.net/;
|
|
description = "A library to read and manipulate EXIF data in digital photographs";
|
|
license = "LGPL 2.1";
|
|
};
|
|
|
|
}
|