forked from mirrors/nixpkgs
* Added libgphoto2.
svn path=/nixpkgs/trunk/; revision=2379
This commit is contained in:
parent
3ae70fc768
commit
8880818869
10
pkgs/development/libraries/libgphoto2/default.nix
Normal file
10
pkgs/development/libraries/libgphoto2/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libgphoto2-2.1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://heanet.dl.sourceforge.net/sourceforge/gphoto/libgphoto2-2.1.5.tar.gz;
|
||||
md5 = "210844f0d88f58842917af6eaff06382";
|
||||
};
|
||||
}
|
|
@ -622,6 +622,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libgphoto2 = (import ../development/libraries/libgphoto2) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
popt = (import ../development/libraries/popt) {
|
||||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue