evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / qm / qmk_hid / package.nix
blobf620dabb19cd7ef2c731d30c66d5512fd31e7d1b
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , systemd
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "qmk_hid";
10   version = "0.1.12";
12   src = fetchFromGitHub {
13     owner = "FrameworkComputer";
14     repo = "qmk_hid";
15     rev = "v${version}";
16     hash = "sha256-wJi7FQrvMbdTwvbbjBnzmxupMbEuM8TeZ0JIK5ulQKI=";
17   };
19   cargoHash = "sha256-X8pBv4dFiiLDKDjyW3XpVOdzq5c5/4GcRL6jnJ8Rf1A=";
21   nativeBuildInputs = [
22     pkg-config
23   ];
25   buildInputs = [
26     systemd
27   ];
29   checkFlags = [
30     # test doesn't compile
31     "--skip=src/lib.rs"
32   ];
34   meta = with lib; {
35     description = "Commandline tool for interactng with QMK devices over HID";
36     homepage = "https://github.com/FrameworkComputer/qmk_hid";
37     license = with licenses; [ bsd3 ];
38     maintainers = [ ];
39     mainProgram = "qmk_hid";
40   };