update to libgphoto2 2.1.99. This adds a dependency on libusb and pkgconfig

svn path=/nixpkgs/trunk/; revision=4637
This commit is contained in:
Armijn Hemel 2006-01-31 14:07:25 +00:00
parent 0e09f5a1e0
commit f102909a83
2 changed files with 6 additions and 5 deletions

View file

@ -1,10 +1,11 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, pkgconfig, libusb}:
stdenv.mkDerivation {
name = "libgphoto2-2.1.5";
name = "libgphoto2-2.1.99";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libgphoto2-2.1.5.tar.gz;
md5 = "210844f0d88f58842917af6eaff06382";
url = http://surfnet.dl.sourceforge.net/sourceforge/gphoto/libgphoto2-2.1.99.tar.bz2;
md5 = "3c6d9cb65661915e07491a6f9215d5a9";
};
buildInputs = [pkgconfig libusb];
}

View file

@ -955,7 +955,7 @@ rec {
};
libgphoto2 = (import ../development/libraries/libgphoto2) {
inherit fetchurl stdenv;
inherit fetchurl stdenv pkgconfig libusb;
};
popt = (import ../development/libraries/popt) {