1{lib, stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 pname = "libiptcdata";
5 version = "1.0.4";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/libiptcdata/${pname}-${version}.tar.gz";
9 sha256 = "03pfvkmmx762iydq0q207x2028d275pbdysfsgpmrr0ywy63pxkr";
10 };
11
12 meta = {
13 description = "Library for reading and writing the IPTC metadata in images and other files";
14 homepage = "http://libiptcdata.sourceforge.net/";
15 license = lib.licenses.gpl2Plus;
16 platforms = lib.platforms.unix;
17 };
18}