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

49 lines
1.7 KiB
Nix
Raw Normal View History

2016-11-06 06:05:08 -08:00
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, libusb1, libtool, libexif, libjpeg, gettext, autoreconfHook }:
stdenv.mkDerivation rec {
2013-06-08 05:51:43 -07:00
name = "libgphoto2-${meta.version}";
2016-11-06 06:05:08 -08:00
src = fetchFromGitHub {
owner = "gphoto";
repo = "libgphoto2";
rev = "${meta.tag}";
sha256 = "17k3jxib2jcr2wk83p34h3lvvjbs2gqhqfcngm8zmlrwb385yalh";
};
2016-11-06 06:05:08 -08:00
patches = [(fetchpatch {
name = "libjpeg_turbo_1.5.0_fix.patch";
url = "https://anonscm.debian.org/cgit/pkg-phototools/libgphoto2.git/plain"
+ "/debian/patches/libjpeg_turbo_1.5.0_fix.patch?id=8ce79a2a02d";
2016-11-06 06:05:08 -08:00
sha256 = "1zclgg20nv4krj8gigq3ylirxqiv1v8p59cfji041m156hy80gy2";
})];
2016-11-06 06:05:08 -08: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-22 17:59:47 -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
'';
meta = {
homepage = http://www.gphoto.org/proj/libgphoto2/;
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
from digital cameras.
2012-10-20 21:59:25 -07:00
'';
2016-04-13 05:28:56 -07:00
version = "2.5.10";
2016-11-06 06:05:08 -08:00
tag = "libgphoto2-2_5_10-release";
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
license = stdenv.lib.licenses.lgpl21Plus;
2012-10-20 21:59:25 -07:00
platforms = with stdenv.lib.platforms; unix;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}