Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / autotiling / default.nix
bloba24095759f0254d71650b57f6670cb4bf015aa10
1 { lib, buildPythonApplication, fetchFromGitHub, i3ipc, importlib-metadata }:
3 buildPythonApplication rec {
4   pname = "autotiling";
5   version = "1.8";
7   src = fetchFromGitHub {
8     owner = "nwg-piotr";
9     repo = pname;
10     rev = "refs/tags/v${version}";
11     sha256 = "sha256-4iiiiuXCHFXEeA99ikq/G3q2KXBZ7vwpfET7QtoDVds=";
12   };
14   propagatedBuildInputs = [ i3ipc importlib-metadata ];
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/nwg-piotr/autotiling";
19     description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation";
20     license = licenses.gpl3Plus;
21     platforms = platforms.linux;
22     maintainers = with maintainers; [ artturin ];
23   };