mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
18 lines
487 B
Nix
18 lines
487 B
Nix
{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;
|
|
};
|
|
}
|