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

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