Unverified Commit 8bcafe42 authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

Merge pull request #247992 from thiagokokada/bump-picom-next

picom-next: unstable-2023-01-29 -> unstable-2023-08-03
parents ffcff5e4 e2c4a67e
Loading
Loading
Loading
Loading
+25 −6
Original line number Diff line number Diff line
{ pcre, pcre2, libXinerama, picom, lib, fetchFromGitHub }:
{ lib
, fetchFromGitHub
, libXinerama
, pcre
, pcre2
, picom
, xcbutil
}:

picom.overrideAttrs (oldAttrs: rec {
picom.overrideAttrs (oldAttrs: {
  pname = "picom-next";
  version = "unstable-2023-01-29";
  buildInputs = [ pcre2 ] ++ lib.remove libXinerama (lib.remove pcre oldAttrs.buildInputs);
  version = "unstable-2023-08-03";

  buildInputs = [
    pcre2
    xcbutil
  ]
  # remove dependencies that are not used anymore
  ++ (lib.subtractLists [
    libXinerama
    pcre
  ]
    oldAttrs.buildInputs);

  src = fetchFromGitHub {
    owner = "yshui";
    repo = "picom";
    rev = "cee12875625465292bc11bf09dc8ab117cae75f4";
    sha256 = "sha256-lVwBwOvzn4ro1jInRuNvn1vQuwUHUp4MYrDaFRmW9pc=";
    rev = "5d6957d3da1bf99311a676eab94c69ef4276bedf";
    hash = "sha256-Mzf0533roLSODjMCPKyGSMbP7lIbT+PoLTZfoIBAI6g=";
  };

  meta.maintainers = with lib.maintainers; oldAttrs.meta.maintainers ++ [ GKasparov ];
})