My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libiptcdata/default.nix

18 lines
508 B

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "libiptcdata";
version = "1.0.4";
src = fetchurl {
url = "mirror://sourceforge/libiptcdata/${pname}-${version}.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;
};
}