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 {
|
2012-01-07 20:41:59 +01:00
|
|
|
name = "gphoto2-2.4.11";
|
2008-09-22 19:06:31 +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";
|
2012-01-07 20:41:59 +01:00
|
|
|
sha256 = "0ah42b7rnqh0z8bb96z7cdycxdh5k19h6lmfc02kdhrhqdr3q81y";
|
2006-01-31 15:22:08 +01:00
|
|
|
};
|
2008-09-22 19:06:31 +02:00
|
|
|
|
2012-01-07 20:41:59 +01:00
|
|
|
buildNativeInputs = [ pkgconfig gettext ];
|
|
|
|
buildInputs = [ libgphoto2 libexif popt libjpeg readline libtool ];
|
2008-09-22 19:06:31 +02:00
|
|
|
|
2008-01-30 20:49:42 +01:00
|
|
|
meta = {
|
2008-09-22 19:06:31 +02:00
|
|
|
homepage = http://www.gphoto.org/;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-01-31 15:22:08 +01:00
|
|
|
}
|