Unverified Commit 98088d71 authored by Gutyina Gergő's avatar Gutyina Gergő
Browse files

picom-{allusive,jonaburg}: fix build by adding pcre

parent 9083a8f0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ picom, lib, fetchFromGitHub, installShellFiles }:
{ picom, lib, fetchFromGitHub, installShellFiles, pcre }:

picom.overrideAttrs (oldAttrs: rec {
  pname = "picom-allusive";
@@ -11,7 +11,7 @@ picom.overrideAttrs (oldAttrs: rec {
    hash = "sha256-yM4TJjoVs+i33m/u/oWlx1TDKJrgwlfiGu72DOL/tl8=";
  };

  nativeBuildInputs = [ installShellFiles ] ++ oldAttrs.nativeBuildInputs;
  nativeBuildInputs = [ installShellFiles pcre ] ++ oldAttrs.nativeBuildInputs;

  postInstall = ''
    installManPage $src/man/picom.1.gz
+3 −1
Original line number Diff line number Diff line
{ picom, lib, fetchFromGitHub }:
{ picom, lib, fetchFromGitHub, pcre }:

picom.overrideAttrs (oldAttrs: rec {
  pname = "picom-jonaburg";
@@ -10,6 +10,8 @@ picom.overrideAttrs (oldAttrs: rec {
    sha256 = "sha256-4voCAYd0fzJHQjJo4x3RoWz5l3JJbRvgIXn1Kg6nz6Y=";
  };

  nativeBuildInputs = [ pcre ] ++ oldAttrs.nativeBuildInputs;

  meta = with lib; {
    description = "A fork of picom featuring animations and improved rounded corners.";
    homepage = "https://github.com/jonaburg/picom";