* Added libgphoto2.

svn path=/nixpkgs/trunk/; revision=2379
This commit is contained in:
Eelco Dolstra 2005-03-11 11:08:38 +00:00
parent 3ae70fc768
commit 8880818869
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libgphoto2-2.1.5";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/gphoto/libgphoto2-2.1.5.tar.gz;
md5 = "210844f0d88f58842917af6eaff06382";
};
}

View file

@ -622,6 +622,10 @@ rec {
inherit fetchurl stdenv;
};
libgphoto2 = (import ../development/libraries/libgphoto2) {
inherit fetchurl stdenv;
};
popt = (import ../development/libraries/popt) {
inherit fetchurl stdenv gettext;
};