mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
1.1 KiB
Nix
32 lines
1.1 KiB
Nix
{stdenv, fetchurl, pkgconfig, libusb, libtool, libexif, libjpeg, gettext}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgphoto2-${meta.version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
|
sha256 = "18nd2zkgazphgkfdhf8ps7knda8vdnhrq9c02989279x2qxjsci9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
|
buildInputs = [ libtool libjpeg ];
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
|
propagatedBuildInputs = [ libusb libexif ];
|
|
|
|
meta = {
|
|
homepage = http://www.gphoto.org/proj/libgphoto2/;
|
|
description = "A library for accessing digital cameras";
|
|
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.
|
|
'';
|
|
version = "2.5.3.1";
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
};
|
|
}
|