qmk_hid: init at 0.1.5

This commit is contained in:
Janik H 2023-05-15 13:41:57 +02:00 committed by Anderson Torres
parent 63f26166c1
commit 013bd5a87d
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ 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 ];
};
}

View file

@ -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 { };