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