33 lines
665 B
Nix
33 lines
665 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
gettext,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libexif";
|
|
version = "0.6.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "${pname}-${builtins.replaceStrings [ "." ] [ "_" ] version}-release";
|
|
sha256 = "sha256-H8YzfNO2FCrYAwEA4bkOpRdxISK9RXaHVuK8zz70TlM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gettext
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libexif.github.io/";
|
|
description = "Library to read and manipulate EXIF data in digital photographs";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
|
|
}
|