Unverified Commit 85f15865 authored by Samuel Dionne-Riel's avatar Samuel Dionne-Riel Committed by GitHub
Browse files

Merge pull request #258711 from allusive-dev/picom-allusive

picom-allusive: init for 0.3.1
parents 840b0698 0b55e764
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -829,6 +829,12 @@
    githubId = 5892756;
    name = "Alec Snyder";
  };
  allusive = {
    email = "jasper@allusive.dev";
    name = "Allusive";
    github = "allusive-dev";
    githubId = 99632976;
  };
  almac = {
    email = "alma.cemerlic@gmail.com";
    github = "a1mac";
+24 −0
Original line number Diff line number Diff line
{ 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 ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -36826,6 +36826,8 @@ with pkgs;
  picom = callPackage ../applications/window-managers/picom { };
  picom-allusive = callPackage ../applications/window-managers/picom/picom-allusive.nix { };
  picom-jonaburg = callPackage ../applications/window-managers/picom/picom-jonaburg.nix { };
  picom-next = callPackage ../applications/window-managers/picom/picom-next.nix { };