i3-rounded: fix build after i3 update

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
Marc 'risson' Schmitt 2022-09-28 17:26:14 +02:00
parent 7c5c1b9ef8
commit f277eeec15
No known key found for this signature in database
GPG Key ID: 9C3FA22FABF1AA8D

View File

@ -1,4 +1,4 @@
{ fetchFromGitHub, lib, i3 }:
{ fetchFromGitHub, lib, i3, pcre }:
i3.overrideAttrs (oldAttrs: rec {
pname = "i3-rounded";
@ -11,6 +11,8 @@ i3.overrideAttrs (oldAttrs: rec {
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";