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