Merge pull request #265109 from IogaMaster/picom-allusive

picom-allusive: 0.3.2 -> 1.2.5
This commit is contained in:
Nick Cao 2023-11-03 09:54:44 -04:00 committed by GitHub
commit 1d455e2e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -7664,6 +7664,12 @@
githubId = 88038050;
name = "Souvik Sen";
};
iogamaster = {
email = "iogamastercode+nixpkgs@gmail.com";
name = "IogaMaster";
github = "iogamaster";
githubId = 67164465;
};
ionutnechita = {
email = "ionut_n2001@yahoo.com";
github = "ionutnechita";

View File

@ -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 ];
};
})