33 lines
959 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, udev, libusb1
2017-03-13 13:23:41 -05:00
, darwin }:
2014-10-24 16:35:01 -07:00
stdenv.mkDerivation rec {
2019-08-28 16:58:18 +08:00
pname = "hidapi";
2020-11-26 07:02:19 +00:00
version = "0.10.1";
2014-10-24 16:35:01 -07:00
src = fetchFromGitHub {
2019-08-28 16:58:18 +08:00
owner = "libusb";
2014-10-24 16:35:01 -07:00
repo = "hidapi";
2019-08-28 16:58:18 +08:00
rev = "${pname}-${version}";
2020-11-26 07:02:19 +00:00
sha256 = "1nr4z4b10vpbh3ss525r7spz4i43zim2ba5qzfl15dgdxshxxivb";
2014-10-24 16:35:01 -07:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-08-28 16:58:18 +08:00
buildInputs = [ ]
++ lib.optionals stdenv.isLinux [ libusb1 udev ];
2019-08-28 16:58:18 +08:00
enableParallelBuilding = true;
2017-03-13 13:23:41 -05:00
propagatedBuildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ IOKit Cocoa ]);
2014-10-24 16:35:01 -07:00
meta = with lib; {
description = "Library for communicating with USB and Bluetooth HID devices";
2019-08-28 16:58:18 +08:00
homepage = "https://github.com/libusb/hidapi";
2020-10-28 14:53:44 +01:00
maintainers = with maintainers; [ prusnak ];
# Actually, you can chose between GPLv3, BSD or HIDAPI license (more liberal)
2014-10-24 16:35:01 -07:00
license = licenses.bsd3;
platforms = platforms.unix;
};
}