about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-17 00:46:57 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-17 00:46:57 +0000
commit2ab641c39ed77d00be6032f71872f2dd0cffdf13 (patch)
tree00be73e95966a0971720253f235cb518b18e8e02 /pkgs/development
parent87e357c1673b39377967a79a6fee9c6b00317d1d (diff)
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
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libiptcdata/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libiptcdata/default.nix b/pkgs/development/libraries/libiptcdata/default.nix
new file mode 100644
index 0000000000000..1094a4e759192
--- /dev/null
+++ b/pkgs/development/libraries/libiptcdata/default.nix
@@ -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+";
+  };
+}