qmk_hid: 0.1.5 -> 0.1.11

Diff: https://github.com/FrameworkComputer/qmk_hid/compare/v0.1.5...v0.1.11
This commit is contained in:
Janik H. 2023-10-10 21:50:20 +02:00
parent 98156cb838
commit 43e95a2486
No known key found for this signature in database

View file

@ -7,24 +7,30 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "qmk_hid"; pname = "qmk_hid";
version = "0.1.5"; version = "0.1.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FrameworkComputer"; owner = "FrameworkComputer";
repo = "qmk_hid"; repo = "qmk_hid";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-k5D+Ph4DtdTafdNhclK3t4SmHmktuOKRlMMGMmKp48E="; hash = "sha256-k5cZcrjen7nNJM9mKQEwNTVfBPawXwbwNlCyTARdH/g=";
}; };
cargoHash = "sha256-+frWup9sbxCAxl2oiHAn1ccpuGkfa3kjerUByd65oSI="; cargoHash = "sha256-GrerrNDoSFtOEAf0vB9MlkBl+yLnzd/szrpFsAmkB6s=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
]; ];
buildInputs = [ buildInputs = [
systemd systemd
]; ];
checkFlags = [
# test doesn't compile
"--skip=src/lib.rs"
];
meta = with lib; { meta = with lib; {
description = "Commandline tool for interactng with QMK devices over HID"; description = "Commandline tool for interactng with QMK devices over HID";
homepage = "https://github.com/FrameworkComputer/qmk_hid"; homepage = "https://github.com/FrameworkComputer/qmk_hid";