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