about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/picom/picom-next.nix
blob: e5b0176a4e45483d280cb2a439a7c8f609e121e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pcre, pcre2, libXinerama, picom, lib, fetchFromGitHub }:

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