summary refs log tree commit diff
path: root/pkgs/development/libraries/libiptcdata/default.nix
blob: 8e1ca68a69e7f435068274c2b63792977c48541d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "libiptcdata-1.0.4";

  src = fetchurl {
    url = "mirror://sourceforge/libiptcdata/${name}.tar.gz";
    sha256 = "03pfvkmmx762iydq0q207x2028d275pbdysfsgpmrr0ywy63pxkr";
  };

  meta = {
    description = "Library for reading and writing the IPTC metadata in images and other files";
    homepage = http://libiptcdata.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}