mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
35 lines
729 B
Nix
35 lines
729 B
Nix
{ 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 ];
|
|
};
|
|
}
|