3
0
Fork 0
forked from mirrors/nixpkgs

Adding libiptcdata.

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
This commit is contained in:
Lluís Batlle i Rossell 2010-01-17 00:46:57 +00:00
parent 87e357c167
commit 2ab641c39e
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,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 = "GPLv2+";
};
}

View file

@ -4011,6 +4011,10 @@ let
inherit fetchurl stdenv pkgconfig libraw1394; inherit fetchurl stdenv pkgconfig libraw1394;
}; };
libiptcdata = import ../development/libraries/libiptcdata {
inherit fetchurl stdenv;
};
libjingle = import ../development/libraries/libjingle/0.3.11.nix { libjingle = import ../development/libraries/libjingle/0.3.11.nix {
inherit fetchurl stdenv mediastreamer; inherit fetchurl stdenv mediastreamer;
}; };