2ab641c39e
I'm attempting to build rawtherapee, but it wants the propietary library 'rawzor'. Maybe upstream someone will allow building without it some day. Until then, no rawtherapee. svn path=/nixpkgs/trunk/; revision=19497
17 lines
424 B
Nix
17 lines
424 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 = "GPLv2+";
|
|
};
|
|
}
|