mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
update to libgphoto2 2.1.99. This adds a dependency on libusb and pkgconfig
svn path=/nixpkgs/trunk/; revision=4637
This commit is contained in:
parent
0e09f5a1e0
commit
f102909a83
2 changed files with 6 additions and 5 deletions
|
@ -1,10 +1,11 @@
|
|||
{stdenv, fetchurl}:
|
||||
{stdenv, fetchurl, pkgconfig, libusb}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libgphoto2-2.1.5";
|
||||
name = "libgphoto2-2.1.99";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/libgphoto2-2.1.5.tar.gz;
|
||||
md5 = "210844f0d88f58842917af6eaff06382";
|
||||
url = http://surfnet.dl.sourceforge.net/sourceforge/gphoto/libgphoto2-2.1.99.tar.bz2;
|
||||
md5 = "3c6d9cb65661915e07491a6f9215d5a9";
|
||||
};
|
||||
buildInputs = [pkgconfig libusb];
|
||||
}
|
||||
|
|
|
@ -955,7 +955,7 @@ rec {
|
|||
};
|
||||
|
||||
libgphoto2 = (import ../development/libraries/libgphoto2) {
|
||||
inherit fetchurl stdenv;
|
||||
inherit fetchurl stdenv pkgconfig libusb;
|
||||
};
|
||||
|
||||
popt = (import ../development/libraries/popt) {
|
||||
|
|
Loading…
Reference in a new issue