2020-05-18 16:12:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, gettext }:
|
2005-03-11 02:46:20 -08:00
|
|
|
|
2007-11-16 09:28:17 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-18 16:12:05 -07:00
|
|
|
pname = "libexif";
|
|
|
|
version = "0.6.22";
|
2005-03-11 02:46:20 -08:00
|
|
|
|
2020-05-18 16:12:05 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "${pname}-${builtins.replaceStrings ["."] ["_"] version}-release";
|
|
|
|
sha256 = "0mzndakdi816zcs13z7yzp7hj031p2dcyfq2p391r63d9z21jmy1";
|
2005-03-11 02:46:20 -08:00
|
|
|
};
|
|
|
|
|
2020-05-18 16:12:05 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook gettext ];
|
2017-11-09 02:49:23 -08:00
|
|
|
|
2020-05-18 16:12:05 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://libexif.github.io/";
|
2010-08-29 06:49:58 -07:00
|
|
|
description = "A library to read and manipulate EXIF data in digital photographs";
|
2020-05-18 16:12:05 -07:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ erictapen ];
|
2010-08-29 06:47:59 -07:00
|
|
|
};
|
|
|
|
|
2005-03-11 02:46:20 -08:00
|
|
|
}
|