From 0b55e764ad79ed4ed6f00d0a71baad323db6bc70 Mon Sep 17 00:00:00 2001 From: allusive-dev Date: Mon, 9 Oct 2023 16:43:27 +1100 Subject: picom-allusive: init for 0.3.1 --- .../window-managers/picom/picom-allusive.nix | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/applications/window-managers/picom/picom-allusive.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/window-managers/picom/picom-allusive.nix b/pkgs/applications/window-managers/picom/picom-allusive.nix new file mode 100644 index 000000000000..820609884d75 --- /dev/null +++ b/pkgs/applications/window-managers/picom/picom-allusive.nix @@ -0,0 +1,24 @@ +{ picom, lib, fetchFromGitHub }: + +picom.overrideAttrs (oldAttrs: rec { + pname = "picom-allusive"; + version = "0.3.1"; + + src = fetchFromGitHub { + owner = "allusive-dev"; + repo = "picom-allusive"; + rev = version; + hash = "sha256-lk4Ll0mi9h3BAqwgOzFQw4WYKnSW9XTl3PjoK2E4WKg="; + }; + + postInstall = '' + chmod +x $out/bin/picom-trans + '' + (lib.optionalString (oldAttrs ? postInstall) oldAttrs.postInstall); + + meta = { + 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 ]; + }; +}) -- cgit 1.4.1