2014-11-14 13:23:25 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libusb1, libtool, libexif, libjpeg, gettext }:
|
2005-03-11 14:08:38 +03:00
|
|
|
|
2007-11-16 20:28:17 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-08 16:51:43 +04:00
|
|
|
name = "libgphoto2-${meta.version}";
|
2005-03-11 14:08:38 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-11-16 20:28:17 +03:00
|
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
2015-08-08 19:16:14 +03:00
|
|
|
sha256 = "1di7iv2r5ghzrylfbpvp694gpqbwjj3ngrmg4kvl7big6hp2c6h3";
|
2005-03-11 14:08:38 +03:00
|
|
|
};
|
2014-11-14 13:23:25 +03:00
|
|
|
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
2014-11-14 13:23:25 +03:00
|
|
|
buildInputs = [ libtool libjpeg libusb1 ];
|
2009-04-23 15:12:25 +04:00
|
|
|
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
2014-11-14 13:23:25 +03:00
|
|
|
propagatedBuildInputs = [ libexif ];
|
2006-07-07 01:11:59 +04:00
|
|
|
|
2007-11-16 20:28:17 +03:00
|
|
|
meta = {
|
2009-04-15 13:54:55 +04:00
|
|
|
homepage = http://www.gphoto.org/proj/libgphoto2/;
|
|
|
|
description = "A library for accessing digital cameras";
|
2012-10-21 08:59:25 +04: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
|
2014-11-14 13:23:25 +03:00
|
|
|
from digital cameras.
|
2012-10-21 08:59:25 +04:00
|
|
|
'';
|
2015-08-08 19:16:14 +03:00
|
|
|
version = "2.5.8";
|
2012-10-21 14:15:13 +04:00
|
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
2014-11-14 13:23:25 +03:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2012-10-21 08:59:25 +04:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2007-11-16 20:28:17 +03:00
|
|
|
};
|
2005-03-11 14:08:38 +03:00
|
|
|
}
|
2014-11-14 13:23:25 +03:00
|
|
|
|