23 lines
542 B
Nix
23 lines
542 B
Nix
{ fetchFromGitHub, lib, python3 }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "keymapviz";
|
|
version = "1.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yskoht";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-I16iJ6/CrjpDOmlewIxa5Xu/b/97VNH3ATwDNi3SuP8=";
|
|
};
|
|
|
|
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; [ lom ];
|
|
};
|
|
}
|