hidapi 0.12.0 -> 0.13.1 https://github.com/libusb/hidapi/releases attrpath: hidapi Checking auto update branch... No auto update branch exists Old version 0.12.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , pkg-config , libusb1 , udev , Cocoa , IOKit , testers }: stdenv.mkDerivation (finalAttrs: { pname = "hidapi"; version = "0.13.1"; src = fetchFromGitHub { owner = "libusb"; repo = "hidapi"; rev = "${finalAttrs.pname}-${finalAttrs.version}"; sha256 = "sha256-CEZP5n8qEAzsqn8dz3u1nG0YoT7J1P+WfN7urkRTuVg="; }; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = lib.optionals stdenv.isLinux [ libusb1 udev ]; enableParallelBuilding = true; propagatedBuildInputs = lib.optionals stdenv.isDarwin [ Cocoa IOKit ]; passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; meta = with lib; { description = "Library for communicating with USB and Bluetooth HID devices"; homepage = "https://github.com/libusb/hidapi"; maintainers = with maintainers; [ prusnak ]; # You can choose between GPLv3, BSD or HIDAPI license (even more liberal) license = with licenses; [ bsd3 /* or */ gpl3Only ] ; pkgConfigModules = lib.optionals stdenv.isDarwin [ "hidapi" ] ++ lib.optionals stdenv.isLinux [ "hidapi-hidraw" "hidapi-libusb" ]; platforms = platforms.unix; }; })