2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gettext
|
2020-11-16 13:40:29 -08:00
|
|
|
, libusb1
|
|
|
|
, libtool
|
|
|
|
, libexif
|
|
|
|
, libjpeg
|
|
|
|
}:
|
2005-03-11 03:08:38 -08:00
|
|
|
|
2007-11-16 09:28:17 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-16 13:40:29 -08:00
|
|
|
pname = "libgphoto2";
|
2021-02-22 22:01:44 -08:00
|
|
|
version = "2.5.27";
|
2005-03-11 03:08:38 -08:00
|
|
|
|
2016-11-06 06:05:08 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gphoto";
|
|
|
|
repo = "libgphoto2";
|
2020-11-16 13:40:29 -08:00
|
|
|
rev = "libgphoto2-${builtins.replaceStrings [ "." ] [ "_" ] version}-release";
|
2021-02-22 22:01:44 -08:00
|
|
|
sha256 = "sha256-c7fBl6GBLAU+RL5WFC4PL+n/nEHZUfqIJ9qq1+qNNCg=";
|
2005-03-11 03:08:38 -08:00
|
|
|
};
|
2014-11-14 02:23:25 -08:00
|
|
|
|
2017-01-02 08:11:38 -08:00
|
|
|
patches = [];
|
2016-07-09 10:18:05 -07:00
|
|
|
|
2020-11-16 13:40:29 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2021-01-18 22:50:56 -08:00
|
|
|
pkg-config
|
2020-11-16 13:40:29 -08:00
|
|
|
gettext
|
|
|
|
libtool
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libjpeg
|
|
|
|
libusb1
|
|
|
|
];
|
2009-04-23 04:12:25 -07:00
|
|
|
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
2014-11-14 02:23:25 -08:00
|
|
|
propagatedBuildInputs = [ libexif ];
|
2006-07-06 14:11:59 -07:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2016-12-27 10:39:53 -08: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 09:28:17 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.gphoto.org/proj/libgphoto2/";
|
2009-04-15 02:54:55 -07:00
|
|
|
description = "A library for accessing digital cameras";
|
2012-10-20 21:59:25 -07: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 02:23:25 -08:00
|
|
|
from digital cameras.
|
2012-10-20 21:59:25 -07:00
|
|
|
'';
|
2012-10-21 03:15:13 -07:00
|
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
|
|
|
platforms = with lib.platforms; unix;
|
|
|
|
maintainers = with lib.maintainers; [ jcumming ];
|
2007-11-16 09:28:17 -08:00
|
|
|
};
|
2005-03-11 03:08:38 -08:00
|
|
|
}
|