* Added libexif and the exif frontend utility.

svn path=/nixpkgs/trunk/; revision=2376
This commit is contained in:
Eelco Dolstra
2005-03-11 10:46:20 +00:00
parent 6b8a8c92da
commit 83ec45304d
4 changed files with 59 additions and 0 deletions
@@ -0,0 +1,12 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libexif-0.6.11";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/libexif/libexif-0.6.11.tar.bz2;
md5 = "211996a336f1b1a06def5a6d5c94284e";
};
patches = [./no-po.patch];
}