2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libexif, popt, libintl }:
|
2005-03-11 02:46:20 -08:00
|
|
|
|
2012-07-13 09:13:59 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "exif-0.6.21";
|
2005-03-11 02:46:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-07-13 09:13:59 -07:00
|
|
|
url = "mirror://sourceforge/libexif/${name}.tar.bz2";
|
|
|
|
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
|
2005-03-11 02:46:20 -08:00
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-03-14 12:15:06 -07:00
|
|
|
buildInputs = [ libexif popt libintl ];
|
2016-06-08 18:11:03 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://libexif.github.io";
|
2012-07-13 09:13:59 -07:00
|
|
|
description = "A utility to read and manipulate EXIF data in digital photographs";
|
2018-09-11 14:25:43 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.lgpl21;
|
2012-07-13 09:13:59 -07:00
|
|
|
};
|
2005-03-11 02:46:20 -08:00
|
|
|
}
|