nix-config/overlays/picom.nix
Donovan Glover d058a3bd70
overlays: Update picom to v12-rc2 for animations
Trying this out with dwm and it seems to work. Note that we aren't using
the windowmap patch since it causes windows such as kitty to not focus
properly when switching between tags.
2024-08-23 18:20:20 -04:00

17 lines
375 B
Nix

final: prev: {
picom = prev.picom.overrideAttrs (oldAttrs: rec {
version = "12-rc2";
src = prev.fetchFromGitHub {
owner = "yshui";
repo = "picom";
rev = "v${version}";
hash = "sha256-59I6uozu4g9hll5U/r0nf4q92+zwRlbOD/z4R8TpSdo=";
};
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ (with prev; [
asciidoctor
]);
});
}