2016-11-06 15:05:08 +01:00
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, libusb1, libtool, libexif, libjpeg, gettext, autoreconfHook }:
|
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
|
|
|
|
2016-11-06 15:05:08 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gphoto";
|
|
|
|
repo = "libgphoto2";
|
|
|
|
rev = "${meta.tag}";
|
2017-02-02 11:10:54 +01:00
|
|
|
sha256 = "0chwnw3d2d1k8g4xidzkpy9f3ci30yz7yvxq1mipp2rbndl1y2am";
|
2005-03-11 12:08:38 +01:00
|
|
|
};
|
2014-11-14 11:23:25 +01:00
|
|
|
|
2017-01-02 17:11:38 +01:00
|
|
|
patches = [];
|
2016-07-09 19:18:05 +02:00
|
|
|
|
2016-11-06 15:05:08 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext autoreconfHook ];
|
|
|
|
buildInputs = [ libtool libjpeg libusb1 ];
|
2009-04-23 13:12:25 +02:00
|
|
|
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
2014-11-14 11:23:25 +01:00
|
|
|
propagatedBuildInputs = [ libexif ];
|
2006-07-06 23:11:59 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2016-12-27 19:39:53 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/udev/rules.d
|
|
|
|
$out/lib/libgphoto2/print-camera-list udev-rules version 175 group camera >$out/lib/udev/rules.d/40-gphoto2.rules
|
|
|
|
'';
|
|
|
|
|
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
|
2014-11-14 11:23:25 +01:00
|
|
|
from digital cameras.
|
2012-10-21 06:59:25 +02:00
|
|
|
'';
|
2017-02-02 11:10:54 +01:00
|
|
|
version = "2.5.12";
|
|
|
|
tag = "libgphoto2-2_5_12-release";
|
2012-10-21 12:15:13 +02:00
|
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
2014-11-14 11:23:25 +01: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
|
|
|
}
|