From 80f60a21109bb0fe3b28c4801ea6b8f95d0f3841 Mon Sep 17 00:00:00 2001 From: IogaMaster Date: Thu, 2 Nov 2023 17:07:48 -0600 Subject: [PATCH 1/2] maintainers: add iogamaster --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 40bebe6285c5..5715f109f9c4 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -7658,6 +7658,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"; From 7ed97be3629ad65d0ffe7f47d46df84eac220644 Mon Sep 17 00:00:00 2001 From: IogaMaster Date: Thu, 2 Nov 2023 17:09:43 -0600 Subject: [PATCH 2/2] picom-allusive: 0.3.2 -> 1.2.5 Co-authored-by: Allusive <99632976+allusive-dev@users.noreply.github.com> --- pkgs/applications/window-managers/picom/picom-allusive.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/window-managers/picom/picom-allusive.nix b/pkgs/applications/window-managers/picom/picom-allusive.nix index eb31dd9ccdff..0efb67f641bb 100644 --- a/pkgs/applications/window-managers/picom/picom-allusive.nix +++ b/pkgs/applications/window-managers/picom/picom-allusive.nix @@ -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 ]; }; })