Skip to content

Commit

Permalink
qmk: init at 0.0.45
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Apr 2, 2021
1 parent 5d63111 commit 01e7797
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/tools/misc/qmk/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, python3
, fetchpatch
}:

python3.pkgs.buildPythonApplication rec {
pname = "qmk";
version = "0.0.45";

src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "43f297f36b21d68c34c5efa0ce1449dddb2e28753f80939cadf761ee7a2a0901";
};

patches = [
# https://github.com/qmk/qmk_cli/pull/48
(fetchpatch {
name = "remove-unused-install-requires.patch";
url = "https://github.com/qmk/qmk_cli/commit/75b6ada1feccfa5a9bc2bb07a4cc749ef40d02dd.patch";
sha256 = "0lwi1dz35p07vha5gwq2jxm5q49vm99ix4jyhd6g6ypqbq1qiwc8";
})
];

nativeBuildInputs = with python3.pkgs; [
setuptools-scm
];

propagatedBuildInputs = with python3.pkgs; [
milc
];

# no tests implemented
doCheck = false;

meta = with lib; {
description = "A program to help users work with QMK Firmware";
homepage = "https://github.com/qmk/qmk_cli";
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7640,6 +7640,8 @@ in

qjoypad = callPackage ../tools/misc/qjoypad { };

qmk = callPackage ../tools/misc/qmk { };

qosmic = libsForQt5.callPackage ../applications/graphics/qosmic { };

qownnotes = libsForQt514.callPackage ../applications/office/qownnotes { };
Expand Down

0 comments on commit 01e7797

Please sign in to comment.