2016-06-09 02:11:03 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libexif, popt, libintlOrEmpty }:
|
2005-03-11 10:46:20 +00:00
|
|
|
|
2012-07-13 17:13:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "exif-0.6.21";
|
2005-03-11 10:46:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-07-13 17:13:59 +01:00
|
|
|
url = "mirror://sourceforge/libexif/${name}.tar.bz2";
|
|
|
|
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr";
|
2005-03-11 10:46:20 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libexif popt ] ++ libintlOrEmpty;
|
2016-06-09 02:11:03 +01:00
|
|
|
|
2012-07-13 17:13:59 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://libexif.sourceforge.net/;
|
|
|
|
description = "A utility to read and manipulate EXIF data in digital photographs";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-07-13 17:13:59 +01:00
|
|
|
};
|
2005-03-11 10:46:20 +00:00
|
|
|
}
|