a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
11 lines
318 B
Nix
11 lines
318 B
Nix
{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];
|
|
}
|