1{
2 fetchFromGitHub,
3 lib,
4 i3,
5 pcre,
6}:
7
8i3.overrideAttrs (oldAttrs: {
9 pname = "i3-rounded";
10 version = "4.21.1";
11
12 src = fetchFromGitHub {
13 owner = "LinoBigatti";
14 repo = "i3-rounded";
15 rev = "524c9f7b50f8c540b2ae3480b242c30d8775f98e";
16 sha256 = "0y7m1s1y8f9vgkp7byi33js8n4rigiykd71s936i5d4rwlzrxiwm";
17 };
18
19 buildInputs = oldAttrs.buildInputs ++ [ pcre ];
20
21 # Some tests are failing.
22 doCheck = false;
23
24 meta = with lib; {
25 description = "Fork of i3-gaps that adds rounding to window corners";
26 homepage = "https://github.com/LinoBigatti/i3-rounded";
27 maintainers = with maintainers; [ marsupialgutz ];
28 license = licenses.bsd3;
29 platforms = platforms.unix;
30 };
31})