2021-06-04 09:07:49 +00:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, i3ipc, importlib-metadata }:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "autotiling";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "1.9.1";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nwg-piotr";
|
|
|
|
repo = pname;
|
2022-09-09 14:08:57 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-PTMF9w4PMkKuhjLAP7856lOOiuyj5YZOoax0K9bgGgQ=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ i3ipc importlib-metadata ];
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/nwg-piotr/autotiling";
|
|
|
|
description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation";
|
|
|
|
license = licenses.gpl3Plus;
|
2021-06-04 09:07:49 +00:00
|
|
|
platforms = platforms.linux;
|
2020-08-20 17:08:02 +00:00
|
|
|
maintainers = with maintainers; [ artturin ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "autotiling";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|