2021-01-17 03:09:27 +01:00
|
|
|
{ lib, stdenv, fetchurl, libtool, pkg-config, libgphoto2, fuse, glib }:
|
2009-08-24 23:35:45 +02:00
|
|
|
|
2015-06-15 13:42:31 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gphoto2fs";
|
2015-06-15 13:42:31 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2009-08-24 23:35:45 +02:00
|
|
|
description = "Fuse FS to mount a digital camera";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.gphoto.org/";
|
2018-09-01 14:02:24 +02:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ lgpl2 gpl2 ];
|
2009-08-24 23:35:45 +02:00
|
|
|
};
|
|
|
|
}
|