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