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

View file

@ -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];
}

View file

@ -1977,6 +1977,10 @@ rec {
inherit fetchurl stdenv ncurses; inherit fetchurl stdenv ncurses;
}; };
gphoto2 = (import ../applications/misc/gphoto2) {
inherit fetchurl stdenv pkgconfig libgphoto2 libexif popt;
};
xchm = (import ../applications/misc/xchm) { xchm = (import ../applications/misc/xchm) {
inherit fetchurl stdenv wxGTK chmlib; inherit fetchurl stdenv wxGTK chmlib;
}; };