27 lines
576 B
Nix
27 lines
576 B
Nix
{
|
|
lib
|
|
, fetchgit
|
|
, python3Packages
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "system_hotkey";
|
|
version = "1.0.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/timeyyy/system_hotkey.git";
|
|
rev = "37073bb04bdf78f8d3af909a9da3d3c30c7b8854";
|
|
sha256 = "1d8n3783dblv04zlnky4h7xdgm5ay2bb6zxi3shk1f56621pf3qz";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/timeyyy/system_hotkey";
|
|
description = "system wide hotkeys";
|
|
license = licenses.bsd3;
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|