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

33 lines
1.2 KiB
Nix
Raw Normal View History

2013-04-01 18:08:28 +02:00
{ stdenv, fetchurl, pkgconfig, libusb1, libtool, libexif, libjpeg, gettext, libxml2 }:
stdenv.mkDerivation rec {
2013-04-01 18:08:28 +02:00
name = "libgphoto2-2.5.1.1";
src = fetchurl {
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
2013-04-01 18:08:28 +02:00
sha256 = "057dnyrxr0vy2zs4fhscpig42kvlsy9fg4gj20fhvjcvp3pak8xl";
};
2013-04-01 18:08:28 +02:00
nativeBuildInputs = [ pkgconfig gettext ];
2013-04-01 18:08:28 +02:00
buildInputs = [ libtool libjpeg libxml2 ];
# These are mentioned in the Requires line of libgphoto's pkg-config file.
2013-04-01 18:08:28 +02:00
propagatedBuildInputs = [ libusb1 libexif ];
NIX_CFLAGS_COMPILE = "-I${libxml2}/include/libxml2"; # bogus detection again
meta = {
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
2013-04-01 18:08:28 +02:00
from digital cameras.
2012-10-21 06:59:25 +02:00
'';
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
2013-04-01 18:08:28 +02: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 ];
};
}