nixpkgs/pkgs/tools/misc/keymapviz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
571 B
Nix
Raw Normal View History

2021-11-09 23:11:24 +00:00
{ fetchFromGitHub, lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "keymapviz";
version = "1.14.1";
2021-11-09 23:11:24 +00:00
src = fetchFromGitHub {
owner = "yskoht";
repo = pname;
rev = version;
sha256 = "sha256-eCvwgco22uPEDDsT8FfTRon1xCGy5p1PBp0pDfNprMs=";
2021-11-09 23:11:24 +00:00
};
propagatedBuildInputs = with python3.pkgs; [ regex ];
meta = with lib; {
description = "Qmk keymap.c visualizer";
homepage = "https://github.com/yskoht/keymapviz";
license = licenses.mit;
maintainers = with maintainers; [ lom ];
2023-11-27 01:17:53 +00:00
mainProgram = "keymapviz";
2021-11-09 23:11:24 +00:00
};
}