about summary refs log tree commit diff
path: root/pkgs/development/libraries/libiptcdata/default.nix
blob: 158962d3294059e5e5f4e942ed139b596f770bab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{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;
  };
}