51 lines
995 B
Nix
51 lines
995 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
|
, gettext
|
|
, libexif
|
|
, libgphoto2
|
|
, libjpeg
|
|
, libtool
|
|
, popt
|
|
, readline
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gphoto2";
|
|
version = "2.5.27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gphoto";
|
|
repo = "gphoto2";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zzlyA2IedyBZ4/TdSmrqbe2le8rFMQ6tY6jF5skJ7l4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gettext
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
libexif
|
|
libgphoto2
|
|
libjpeg
|
|
popt
|
|
readline
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A ready to use set of digital camera software applications";
|
|
longDescription = ''
|
|
|
|
A set of command line utilities for manipulating over 1400 different
|
|
digital cameras. Through libgphoto2, it supports PTP, MTP, and much more..
|
|
|
|
'';
|
|
homepage = "http://www.gphoto.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.jcumming ];
|
|
};
|
|
}
|