2008-09-22 17:06:31 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, libusb, libtool, libexif, libjpeg, gettext}:
|
2005-03-11 11:08:38 +00:00
|
|
|
|
2007-11-16 17:28:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-08-29 13:40:02 +00:00
|
|
|
name = "libgphoto2-2.4.10.1";
|
2005-03-11 11:08:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-11-16 17:28:17 +00:00
|
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
2010-08-29 13:40:02 +00:00
|
|
|
sha256 = "12m99hcak59ppq1ijnfsrcm09mdj102f1xjmz4myggwjdymwc3lq";
|
2005-03-11 11:08:38 +00:00
|
|
|
};
|
2008-09-22 17:06:31 +00:00
|
|
|
|
2009-04-23 11:12:25 +00: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 21:11:59 +00:00
|
|
|
|
2007-11-16 17:28:17 +00:00
|
|
|
meta = {
|
2009-04-15 09:54:55 +00:00
|
|
|
homepage = http://www.gphoto.org/proj/libgphoto2/;
|
|
|
|
description = "A library for accessing digital cameras";
|
2010-08-29 13:40:02 +00:00
|
|
|
license = "LGPL 2.1";
|
2007-11-16 17:28:17 +00:00
|
|
|
};
|
2005-03-11 11:08:38 +00:00
|
|
|
}
|