mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
libusb: add license and other metadata
This commit is contained in:
parent
55c736cd78
commit
0cda784a79
2 changed files with 19 additions and 6 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -21,10 +21,15 @@ stdenv.mkDerivation rec {
|
|||
sed 's,-ludev,-L${systemd.lib}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.libusb.info;
|
||||
description = "User-space USB library";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://libusb.info/";
|
||||
repositories.git = "https://github.com/libusb/libusb";
|
||||
description = "cross-platform user-mode USB device library";
|
||||
longDescription = ''
|
||||
libusb is a cross-platform user-mode library that provides access to USB devices.
|
||||
'';
|
||||
platforms = platforms.all;
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue