Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / gphoto2 / gphotofs.nix
blobafb02c9937f956f4c575d2076310ae304871b83f
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     homepage = "http://www.gphoto.org/";
19     maintainers = [ maintainers.raskin ];
20     platforms = platforms.linux;
21     license = with licenses; [ lgpl2 gpl2 ];
22   };