2021-05-22 15:26:54 +01:00
|
|
|
{ fetchFromGitHub, lib, i3 }:
|
2016-05-30 22:32:44 +01:00
|
|
|
|
2018-06-09 01:10:22 +01:00
|
|
|
i3.overrideAttrs (oldAttrs : rec {
|
2021-05-22 15:26:54 +01:00
|
|
|
pname = "i3-gaps";
|
2021-12-07 05:01:32 +00:00
|
|
|
version = "4.20.1";
|
2016-05-30 22:32:44 +01:00
|
|
|
|
2021-05-22 15:26:54 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Airblader";
|
|
|
|
repo = "i3";
|
|
|
|
rev = version;
|
2021-12-07 05:01:32 +00:00
|
|
|
sha256 = "sha256-aS1dLs8KxoJaTf3RlQX+zRrtNmHEFZgkXDjt+8SuGDw=";
|
2016-05-30 22:32:44 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-05-30 22:32:44 +01:00
|
|
|
description = "A fork of the i3 tiling window manager with some additional features";
|
|
|
|
homepage = "https://github.com/Airblader/i3";
|
|
|
|
maintainers = with maintainers; [ fmthoma ];
|
|
|
|
license = licenses.bsd3;
|
2020-08-23 20:49:25 +01:00
|
|
|
platforms = platforms.linux ++ platforms.netbsd ++ platforms.openbsd;
|
2016-05-30 22:32:44 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Fork of i3wm, a tiling window manager primarily targeted at advanced users
|
|
|
|
and developers. Based on a tree as data structure, supports tiling,
|
|
|
|
stacking, and tabbing layouts, handled dynamically, as well as floating
|
|
|
|
windows. This fork adds a few features such as gaps between windows.
|
|
|
|
Configured via plain text file. Multi-monitor. UTF-8 clean.
|
|
|
|
'';
|
|
|
|
};
|
2018-06-09 01:10:22 +01:00
|
|
|
})
|