summary refs log tree commit diff
path: root/pkgs/applications/misc/gphoto2/default.nix
blob: 0f4af78213df0a5a4a83873423f9bde8c646ae75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, pkgconfig, libgphoto2, libexif, popt}:

stdenv.mkDerivation {
  name = "gphoto2-2.2.0";
  src = fetchurl {
    url = http://surfnet.dl.sourceforge.net/sourceforge/gphoto/gphoto2-2.2.0.tar.bz2;
    md5 = "f5c1f83185db598b4ca52889964a5e84";
  };
  buildInputs = [pkgconfig libgphoto2 libexif popt];
}