2008-09-22 19:06:31 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libgphoto2, libexif, popt, gettext
|
|
|
|
, libjpeg, readline, libtool
|
|
|
|
}:
|
2006-01-31 15:22:08 +01:00
|
|
|
|
2007-11-16 18:28:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-04 11:51:09 +01:00
|
|
|
name = "gphoto2-2.5.3";
|
2013-04-20 12:44:05 +02:00
|
|
|
|
2006-01-31 15:22:08 +01:00
|
|
|
src = fetchurl {
|
2007-11-16 18:28:17 +01:00
|
|
|
url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
|
2014-02-04 11:51:09 +01:00
|
|
|
sha256 = "0i6qjyvgn3aaspiblmiwv51mfy92gm73xpbd3z41ki8mw7plg53i";
|
2006-01-31 15:22:08 +01:00
|
|
|
};
|
2013-04-20 12:44:05 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
2012-01-07 20:41:59 +01:00
|
|
|
buildInputs = [ libgphoto2 libexif popt libjpeg readline libtool ];
|
2013-04-20 12:44:05 +02:00
|
|
|
|
2008-01-30 20:49:42 +01:00
|
|
|
meta = {
|
2012-10-21 06:59:25 +02:00
|
|
|
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..
|
|
|
|
|
|
|
|
'';
|
2008-09-22 19:06:31 +02:00
|
|
|
homepage = http://www.gphoto.org/;
|
2012-10-21 06:59:25 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-01-31 15:22:08 +01:00
|
|
|
}
|