about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/i3/rounded.nix
blob: aa3701975fcca6068db3a222d58213323201c0c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ fetchFromGitHub, lib, i3, pcre }:

i3.overrideAttrs (oldAttrs: rec {
  pname = "i3-rounded";
  version = "unstable-2021-10-03";

  src = fetchFromGitHub {
    owner = "LinoBigatti";
    repo = "i3-rounded";
    rev = "524c9f7b50f8c540b2ae3480b242c30d8775f98e";
    sha256 = "0y7m1s1y8f9vgkp7byi33js8n4rigiykd71s936i5d4rwlzrxiwm";
  };

  buildInputs = oldAttrs.buildInputs ++ [ pcre ];

  meta = with lib; {
    description = "A fork of i3-gaps that adds rounding to window corners";
    homepage = "https://github.com/LinoBigatti/i3-rounded";
    maintainers = with maintainers; [ marsupialgutz ];
    license = licenses.bsd3;
    platforms = platforms.unix;
  };
})