picom-allusive: 0.3.2 -> 1.2.5

Co-authored-by: Allusive <99632976+allusive-dev@users.noreply.github.com>
This commit is contained in:
IogaMaster
2023-11-02 20:31:45 -06:00
co-authored by Allusive
parent 80f60a2110
commit 7ed97be362
@@ -2,19 +2,18 @@
picom.overrideAttrs (oldAttrs: rec {
pname = "picom-allusive";
version = "0.3.2";
version = "1.2.5";
src = fetchFromGitHub {
owner = "allusive-dev";
repo = "picom-allusive";
rev = version;
hash = "sha256-1zWntz2QKp/O9ZuOUZy9NkCNXFsBqRRvcd0SAr+7G/o=";
hash = "sha256-yM4TJjoVs+i33m/u/oWlx1TDKJrgwlfiGu72DOL/tl8=";
};
nativeBuildInputs = [ installShellFiles ] ++ oldAttrs.nativeBuildInputs;
postInstall = ''
chmod +x $out/bin/picom-trans
installManPage $src/man/picom.1.gz
'' + (lib.optionalString (oldAttrs ? postInstall) oldAttrs.postInstall);
@@ -22,6 +21,6 @@ picom.overrideAttrs (oldAttrs: rec {
description = "A fork of picom featuring improved animations and other features";
homepage = "https://github.com/allusive-dev/picom-allusive";
license = with lib.licenses; [ mit mpl20 ];
maintainers = with lib.maintainers; [ allusive ];
maintainers = with lib.maintainers; [ allusive iogamaster ];
};
})