libusb: add license and other metadata

This commit is contained in:
Leon Schuermann
2018-10-11 14:32:47 +02:00
parent 55c736cd78
commit 0cda784a79
2 changed files with 19 additions and 6 deletions
+10 -2
View File
@@ -16,7 +16,15 @@ stdenv.mkDerivation {
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./fix-headers.patch;
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
homepage = "https://libusb.info/";
repositories.git = "https://github.com/libusb/libusb-compat-0.1";
description = "cross-platform user-mode USB device library";
longDescription = ''
libusb is a cross-platform user-mode library that provides access to USB devices.
The current API is of 1.0 version (libusb-1.0 API), this library is a wrapper exposing the legacy API.
'';
license = licenses.lgpl2Plus;
platforms = platforms.unix;
};
}