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