2008-09-22 19:06:31 +02:00
|
|
|
{stdenv, fetchurl, pkgconfig, libusb, libtool, libexif, libjpeg, gettext}:
|
2005-03-11 12:08:38 +01:00
|
|
|
|
2007-11-16 18:28:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-04-15 11:54:55 +02:00
|
|
|
name = "libgphoto2-2.4.5";
|
2005-03-11 12:08:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-11-16 18:28:17 +01:00
|
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
2009-04-15 11:54:55 +02:00
|
|
|
sha256 = "1pipdwjxbjg7y9n5ldz6qlpiiiqyba6jx315277ams5d8jxg2bfk";
|
2005-03-11 12:08:38 +01:00
|
|
|
};
|
2008-09-22 19:06:31 +02:00
|
|
|
|
2009-04-23 13:12:25 +02:00
|
|
|
buildInputs = [pkgconfig libtool libjpeg gettext];
|
|
|
|
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
|
|
|
propagatedBuildInputs = [libusb libexif];
|
2006-07-06 23:11:59 +02:00
|
|
|
|
2007-11-16 18:28:17 +01:00
|
|
|
meta = {
|
2009-04-15 11:54:55 +02:00
|
|
|
homepage = http://www.gphoto.org/proj/libgphoto2/;
|
|
|
|
description = "A library for accessing digital cameras";
|
2008-09-22 19:06:31 +02:00
|
|
|
license = "LGPL-2";
|
2007-11-16 18:28:17 +01:00
|
|
|
};
|
2005-03-11 12:08:38 +01:00
|
|
|
}
|