21f92a1fa4
svn path=/nixpkgs/trunk/; revision=5632
15 lines
376 B
Nix
15 lines
376 B
Nix
{stdenv, fetchurl, pkgconfig, libusb}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgphoto2-2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = http://surfnet.dl.sourceforge.net/sourceforge/gphoto/libgphoto2-2.2.1.tar.bz2;
|
|
md5 = "69827311733e39fafa9f77bb05e55b77";
|
|
};
|
|
buildInputs = [pkgconfig libusb];
|
|
|
|
## remove this patch when 2.2.2 is released
|
|
patches = [./libgphoto2-2.2.1.patch];
|
|
}
|