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