Commit 013bd5a8 authored by Janik H's avatar Janik H Committed by Anderson Torres
Browse files

qmk_hid: init at 0.1.5

parent 63f26166
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, systemd
}:

rustPlatform.buildRustPackage rec {
  pname = "qmk_hid";
  version = "0.1.5";

  src = fetchFromGitHub {
    owner = "FrameworkComputer";
    repo = "qmk_hid";
    rev = "v${version}";
    hash = "sha256-k5D+Ph4DtdTafdNhclK3t4SmHmktuOKRlMMGMmKp48E=";
  };

  cargoHash = "sha256-+frWup9sbxCAxl2oiHAn1ccpuGkfa3kjerUByd65oSI=";

  nativeBuildInputs = [
    pkg-config
  ];
  buildInputs = [
    systemd
  ];

  meta = with lib; {
    description = "Commandline tool for interactng with QMK devices over HID";
    homepage = "https://github.com/FrameworkComputer/qmk_hid";
    license = with licenses; [ bsd3 ];
    maintainers = with maintainers; [ janik ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11608,6 +11608,8 @@ with pkgs;
  qmk = callPackage ../tools/misc/qmk { };
  qmk_hid = callPackage ../tools/misc/qmk_hid { };
  qmarkdowntextedit = libsForQt5.callPackage  ../development/libraries/qmarkdowntextedit { };
  qodem = callPackage ../tools/networking/qodem { };