anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / gphoto2 / gphotofs.nix
blob0f1e60ff016535e64d7b1b00ed0b5cbcc6f7ac2b
1 { lib, stdenv, fetchurl, libtool, pkg-config, libgphoto2, fuse, glib }:
3 stdenv.mkDerivation rec {
4   pname = "gphoto2fs";
5   version = "0.5.0";
6   src = fetchurl {
7     url="mirror://sourceforge/gphoto/gphotofs/${version}/gphotofs-0.5.tar.bz2";
8     sha256 = "1k23ncbsbh64r7kz050bg31jqamchyswgg9izhzij758d7gc8vk7";
9   };
11   nativeBuildInputs = [ pkg-config ];
12   buildInputs = [
13     libgphoto2 fuse glib libtool
14   ];
16   meta = with lib; {
17     description = "Fuse FS to mount a digital camera";
18     mainProgram = "gphotofs";
19     homepage = "http://www.gphoto.org/";
20     maintainers = [ maintainers.raskin ];
21     platforms = platforms.linux;
22     license = with licenses; [ lgpl2 gpl2 ];
23   };