add gphoto2

svn path=/nixpkgs/trunk/; revision=4638
This commit is contained in:
Armijn Hemel
2006-01-31 14:22:08 +00:00
parent f102909a83
commit 6d76f21f43
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, libgphoto2, libexif, popt}:
stdenv.mkDerivation {
name = "gphoto2-2.1.99";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/gphoto/gphoto2-2.1.99.tar.bz2;
md5 = "549a9dfae6910ab6456b194ea86b55a2";
};
buildInputs = [pkgconfig libgphoto2 libexif popt];
}