summary refs log tree commit diff
path: root/pkgs/applications/misc/gphoto2/default.nix
blob: 9c1e828865ce5884b109a2080e76db0b64604f0d (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://nix.cs.uu.nl/dist/tarballs/gphoto2-2.1.99.tar.bz2;
    md5 = "549a9dfae6910ab6456b194ea86b55a2";
  };
  buildInputs = [pkgconfig libgphoto2 libexif popt];
}