packages: Add superpaper
This commit is contained in:
26
packages/development/python/system_hotkey/default.nix
Normal file
26
packages/development/python/system_hotkey/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user