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

picom-next: unstable-2023-01-29 -> unstable-2023-08-03
This commit is contained in:
Franz Pletz 2023-08-10 00:35:31 +02:00 committed by GitHub
commit 8bcafe42a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,33 @@
{ 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 ];
})