keymapviz: init at 1.9.0

This commit is contained in:
legendofmiracles 2021-11-09 17:11:24 -06:00 committed by Jonathan Ringer
parent f86959efea
commit 6cbf1d4241
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ fetchFromGitHub, lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "keymapviz";
version = "1.9.0";
src = fetchFromGitHub {
owner = "yskoht";
repo = pname;
rev = version;
sha256 = "sha256-lNpUH4BvlnHx0SDq5YSsHdcTeEnf6MH2WRUEsCWWHA0=";
};
propagatedBuildInputs = with python3.pkgs; [ regex ];
meta = with lib; {
description = "A qmk keymap.c visualizer";
homepage = "https://github.com/yskoht/keymapviz";
license = licenses.mit;
maintainers = with maintainers; [ legendofmiracles ];
};
}

View File

@ -31450,6 +31450,8 @@ with pkgs;
key = callPackage ../applications/science/logic/key { };
keymapviz = callPackage ../tools/misc/keymapviz { };
lean = callPackage ../applications/science/logic/lean {};
lean2 = callPackage ../applications/science/logic/lean2 {};
lean3 = lean;