mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
keymapviz: init at 1.9.0
This commit is contained in:
parent
f86959efea
commit
6cbf1d4241
22
pkgs/tools/misc/keymapviz/default.nix
Normal file
22
pkgs/tools/misc/keymapviz/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user