nixpkgs/pkgs/development/libraries/libgphoto2/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, libusb1, libtool, libexif, libjpeg, gettext, autoreconfHook }:
stdenv.mkDerivation rec {
2013-06-08 12:51:43 +00:00
name = "libgphoto2-${meta.version}";
2016-11-06 14:05:08 +00:00
src = fetchFromGitHub {
owner = "gphoto";
repo = "libgphoto2";
2019-09-08 23:38:31 +00:00
rev = meta.tag;
2019-08-15 09:22:40 +00:00
sha256 = "1sc2ycx11khf0qzp1cqxxx1qymv6bjfbkx3vvbwz6wnbyvsigxz2";
};
2017-01-02 16:11:38 +00:00
patches = [];
2016-11-06 14:05:08 +00:00
nativeBuildInputs = [ pkgconfig gettext autoreconfHook ];
buildInputs = [ libtool libjpeg libusb1 ];
# These are mentioned in the Requires line of libgphoto's pkg-config file.
propagatedBuildInputs = [ libexif ];
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00: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
'';
meta = {
homepage = "http://www.gphoto.org/proj/libgphoto2/";
description = "A library for accessing digital cameras";
2012-10-21 04:59:25 +00: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
from digital cameras.
2012-10-21 04:59:25 +00:00
'';
2019-08-15 09:22:40 +00:00
version = "2.5.23";
tag = "libgphoto2-2_5_23-release";
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
license = stdenv.lib.licenses.lgpl21Plus;
2012-10-21 04:59:25 +00:00
platforms = with stdenv.lib.platforms; unix;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}