about summary refs log tree commit diff
path: root/pkgs/development/libraries/hidapi
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-10-28 14:53:44 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-11-01 10:59:20 +0100
commitcbe6c27d220ddae9c4b29bb45f0bc97a7d0bc767 (patch)
tree71baef8089cd90d765325a5ce81e02d591bfd823 /pkgs/development/libraries/hidapi
parent7bf3d77ed667e9186dbe05526a60518c7340be68 (diff)
hidapi: 0.9.0 -> 0.10.0
Diffstat (limited to 'pkgs/development/libraries/hidapi')
-rw-r--r--pkgs/development/libraries/hidapi/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hidapi/default.nix b/pkgs/development/libraries/hidapi/default.nix
index 11cdd0ab7e0ca..356a0fe349df1 100644
--- a/pkgs/development/libraries/hidapi/default.nix
+++ b/pkgs/development/libraries/hidapi/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   pname = "hidapi";
-  version = "0.9.0";
+  version = "0.10.0";
 
   src = fetchFromGitHub {
     owner = "libusb";
     repo = "hidapi";
     rev = "${pname}-${version}";
-    sha256 = "1p4g8lgwj4rki6lbn5l6rvwj0xlbn1xfh4d255bg5pvgczmwmc4i";
+    sha256 = "1n3xn1zvxgyzb84cjpw3i5alw0gkbrps11r4ijxzyqxqym0khagr";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Library for communicating with USB and Bluetooth HID devices";
     homepage = "https://github.com/libusb/hidapi";
+    maintainers = with maintainers; [ prusnak ];
     # Actually, you can chose between GPLv3, BSD or HIDAPI license (more liberal)
     license = licenses.bsd3;
     platforms = platforms.unix;