2015-06-15 13:42:31 +02:00
|
|
|
{ stdenv, fetchurl, libtool, pkgconfig, libgphoto2, fuse, glib }:
|
2009-08-24 23:35:45 +02:00
|
|
|
|
2015-06-15 13:42:31 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gphoto2fs-${version}";
|
|
|
|
version = "0.5.0";
|
2009-08-24 23:35:45 +02:00
|
|
|
src = fetchurl {
|
2015-06-15 13:42:31 +02:00
|
|
|
url="mirror://sourceforge/gphoto/gphotofs/${version}/gphotofs-0.5.tar.bz2";
|
|
|
|
sha256 = "1k23ncbsbh64r7kz050bg31jqamchyswgg9izhzij758d7gc8vk7";
|
2009-08-24 23:35:45 +02:00
|
|
|
};
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-06-15 13:42:31 +02:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
libgphoto2 fuse glib libtool
|
2015-06-15 13:42:31 +02:00
|
|
|
];
|
2013-04-20 12:44:05 +02:00
|
|
|
|
2018-09-01 14:02:24 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-24 23:35:45 +02:00
|
|
|
description = "Fuse FS to mount a digital camera";
|
2018-09-01 14:02:24 +02:00
|
|
|
homepage = http://www.gphoto.org/;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ lgpl2 gpl2 ];
|
2009-08-24 23:35:45 +02:00
|
|
|
};
|
|
|
|
}
|