2008-09-22 17:06:31 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libgphoto2, libexif, popt, gettext
|
|
|
|
, libjpeg, readline, libtool
|
|
|
|
}:
|
2006-01-31 14:22:08 +00:00
|
|
|
|
2007-11-16 17:28:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-17 00:55:02 +00:00
|
|
|
name = "gphoto2-2.5.23";
|
2013-04-20 10:44:05 +00:00
|
|
|
|
2006-01-31 14:22:08 +00:00
|
|
|
src = fetchurl {
|
2007-11-16 17:28:17 +00:00
|
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
2019-06-17 00:55:02 +00:00
|
|
|
sha256 = "1laqwhxr0xhbykmp0dhd3j4rr2lhj5y228s31afnqxp700hhk1yz";
|
2006-01-31 14:22:08 +00:00
|
|
|
};
|
2013-04-20 10:44:05 +00:00
|
|
|
|
2017-03-23 01:52:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext libtool ];
|
|
|
|
buildInputs = [ libgphoto2 libexif popt libjpeg readline ];
|
2013-04-20 10:44:05 +00:00
|
|
|
|
2017-03-23 01:52:41 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A ready to use set of digital camera software applications";
|
2012-10-21 04:59:25 +00:00
|
|
|
longDescription = ''
|
|
|
|
|
|
|
|
A set of command line utilities for manipulating over 1400 different
|
|
|
|
digital cameras. Through libgphoto2, it supports PTP, MTP, and much more..
|
|
|
|
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.gphoto.org/";
|
2017-03-23 01:52:41 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.jcumming ];
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2006-01-31 14:22:08 +00:00
|
|
|
}
|