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:
parent
87e357c167
commit
2ab641c39e
16
pkgs/development/libraries/libiptcdata/default.nix
Normal file
16
pkgs/development/libraries/libiptcdata/default.nix
Normal 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+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue