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

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

23 lines
542 B
Nix
Raw Normal View History

2021-11-10 00:11:24 +01:00
{ fetchFromGitHub, lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "keymapviz";
2022-01-10 02:20:50 +01:00
version = "1.10.1";
2021-11-10 00:11:24 +01:00
src = fetchFromGitHub {
owner = "yskoht";
repo = pname;
rev = version;
2022-01-10 02:20:50 +01:00
sha256 = "sha256-I16iJ6/CrjpDOmlewIxa5Xu/b/97VNH3ATwDNi3SuP8=";
2021-11-10 00:11:24 +01:00
};
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 ];
2021-11-10 00:11:24 +01:00
};
}