2023-03-24 00:07:29 +00:00
|
|
|
{ pcre, pcre2, libXinerama, picom, lib, fetchFromGitHub }:
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
picom.overrideAttrs (oldAttrs: rec {
|
|
|
|
pname = "picom-next";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "unstable-2023-01-29";
|
|
|
|
buildInputs = [ pcre2 ] ++ lib.remove libXinerama (lib.remove pcre oldAttrs.buildInputs);
|
2021-12-06 16:07:01 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yshui";
|
|
|
|
repo = "picom";
|
2023-03-24 00:07:29 +00:00
|
|
|
rev = "cee12875625465292bc11bf09dc8ab117cae75f4";
|
|
|
|
sha256 = "sha256-lVwBwOvzn4ro1jInRuNvn1vQuwUHUp4MYrDaFRmW9pc=";
|
2021-12-06 16:07:01 +00:00
|
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; oldAttrs.meta.maintainers ++ [ GKasparov ];
|
|
|
|
})
|