hid-listen: init at 1.01

wip/yesman
Tom Smeets 7 years ago
parent bcbcbd09d3
commit ff41ec7d80
  1. 24
      pkgs/tools/misc/hid-listen/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,24 @@
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
name = "hid-listen";
version = "1.01";
src = fetchzip {
name = "hid_listen_${version}";
url = "https://www.pjrc.com/teensy/hid_listen_${version}.zip";
sha256 = "0sd4dvi39fl4vy880mg531ryks5zglfz5mdyyqr7x6qv056ffx9w";
};
installPhase = ''
mkdir -p $out/bin
mv ./hid_listen $out/bin/$hid_listen
'';
meta = with stdenv.lib; {
description = "A tool thats prints debugging information from usb HID devices";
homepage = https://www.pjrc.com/teensy/hid_listen.html;
license = licenses.gpl3;
maintainers = with maintainers; [ tomsmeets ];
platforms = platforms.all;
};
}

@ -1033,6 +1033,8 @@ with pkgs;
hexio = callPackage ../development/tools/hexio { };
hid-listen = callPackage ../tools/misc/hid-listen { };
hostsblock = callPackage ../tools/misc/hostsblock { };
hr = callPackage ../applications/misc/hr { };

Loading…
Cancel
Save