Add libusb-1.x

svn path=/nixpkgs/trunk/; revision=23945
This commit is contained in:
Yury G. Kudryashov 2010-09-26 19:39:02 +00:00
parent c7126b63af
commit e04cdd1204
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libusb-1.0.8";
src = fetchurl {
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
sha256 = "1afvpaqnl5plqg95nkvsl4sj9d6ckrmjq44mql8l4zqgf6jx7l11";
};
meta = {
homepage = http://www.libusb.org;
description = "User-space USB library";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}

View file

@ -3397,6 +3397,8 @@ let
libusb = callPackage ../development/libraries/libusb { };
libusb1 = callPackage ../development/libraries/libusb1 { };
libunwind = callPackage ../development/libraries/libunwind { };
libv4l = callPackage ../development/libraries/libv4l { };