autotiling: modernize

This commit is contained in:
kashw2
2025-11-08 12:06:55 +10:00
parent 90c5252536
commit 241ad9ec13

View File

@@ -13,7 +13,7 @@ buildPythonApplication rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nwg-piotr"; owner = "nwg-piotr";
repo = pname; repo = "autotiling";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-k+UiAGMB/fJiE+C737yGdyTpER1ciZrMkZezkcn/4yk="; hash = "sha256-k+UiAGMB/fJiE+C737yGdyTpER1ciZrMkZezkcn/4yk=";
}; };
@@ -24,12 +24,12 @@ buildPythonApplication rec {
]; ];
doCheck = false; doCheck = false;
meta = with lib; { meta = {
homepage = "https://github.com/nwg-piotr/autotiling"; homepage = "https://github.com/nwg-piotr/autotiling";
description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation"; description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
platforms = platforms.linux; platforms = lib.platforms.linux;
maintainers = with maintainers; [ artturin ]; maintainers = with lib.maintainers; [ artturin ];
mainProgram = "autotiling"; mainProgram = "autotiling";
}; };
} }