2013-05-29 19:29:18 +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 {
|
2013-06-08 14:51:43 +02:00
|
|
|
name = "libgphoto2-${meta.version}";
|
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";
|
2014-03-08 18:06:56 +01:00
|
|
|
sha256 = "18nd2zkgazphgkfdhf8ps7knda8vdnhrq9c02989279x2qxjsci9";
|
2005-03-11 12:08:38 +01:00
|
|
|
};
|
2013-05-29 19:29:18 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
2013-05-29 19:29:18 +02:00
|
|
|
buildInputs = [ libtool libjpeg ];
|
2009-04-23 13:12:25 +02:00
|
|
|
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
2013-05-29 19:29:18 +02:00
|
|
|
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";
|
2012-10-21 06:59:25 +02:00
|
|
|
longDescription = ''
|
|
|
|
This is the library backend for gphoto2. It contains the code for PTP,
|
|
|
|
MTP, and other vendor specific protocols for controlling and transferring data
|
2013-05-29 19:29:18 +02:00
|
|
|
from digital cameras.
|
2012-10-21 06:59:25 +02:00
|
|
|
'';
|
2014-03-08 18:06:56 +01:00
|
|
|
version = "2.5.3.1";
|
2012-10-21 12:15:13 +02:00
|
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
2013-05-29 19:29:18 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2012-10-21 06:59:25 +02:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2007-11-16 18:28:17 +01:00
|
|
|
};
|
2005-03-11 12:08:38 +01:00
|
|
|
}
|