mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Add libusb-1.x
svn path=/nixpkgs/trunk/; revision=23945
This commit is contained in:
parent
c7126b63af
commit
e04cdd1204
17
pkgs/development/libraries/libusb1/default.nix
Normal file
17
pkgs/development/libraries/libusb1/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue