summary refs log tree commit diff
path: root/pkgs/development/libraries/libiptcdata/default.nix
blob: 140faab43b1aab44e48d037a50d75fde62b2ecc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{lib, 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 = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
}