Skip to content

Commit

Permalink
Merge pull request NixOS#282453 from gepbird/picom-11
Browse files Browse the repository at this point in the history
picom: 10.2 -> 11
  • Loading branch information
thiagokokada authored Jan 21, 2024
2 parents 58fcc2d + 98088d7 commit 3af4a82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions pkgs/applications/window-managers/picom/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
, libxcb
, libxdg_basedir
, libXext
, libXinerama
, libxml2
, libxslt
, makeWrapper
, meson
, ninja
, pcre
, pcre2
, pixman
, pkg-config
, stdenv
, uthash
, xcbutil
, xcbutilimage
, xcbutilrenderutil
, xorgproto
Expand All @@ -32,13 +32,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "picom";
version = "10.2";
version = "11";

src = fetchFromGitHub {
owner = "yshui";
repo = "picom";
rev = "v${finalAttrs.version}";
hash = "sha256-C+icJXTkE+XMaU7N6JupsP8xhmRVggX9hY1P7za0pO0=";
hash = "sha256-KIblpEEW33ZxxTYuQ/lbUGEJcVdmSWdNOrVCvhOY/OU=";
fetchSubmodules = true;
};

Expand All @@ -63,11 +63,11 @@ stdenv.mkDerivation (finalAttrs: {
libxcb
libxdg_basedir
libXext
libXinerama
libxml2
libxslt
pcre
pcre2
pixman
xcbutil
xcbutilimage
xcbutilrenderutil
xorgproto
Expand Down Expand Up @@ -111,7 +111,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
license = licenses.mit;
homepage = "https://github.com/yshui/picom";
maintainers = with maintainers; [ ertes twey thiagokokada ];
maintainers = with maintainers; [ ertes gepbird twey thiagokokada ];
platforms = platforms.linux;
mainProgram = "picom";
};
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/window-managers/picom/picom-allusive.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ picom, lib, fetchFromGitHub, installShellFiles }:
{ picom, lib, fetchFromGitHub, installShellFiles, pcre }:

picom.overrideAttrs (oldAttrs: rec {
pname = "picom-allusive";
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion pkgs/applications/window-managers/picom/picom-jonaburg.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ picom, lib, fetchFromGitHub }:
{ picom, lib, fetchFromGitHub, pcre }:

picom.overrideAttrs (oldAttrs: rec {
pname = "picom-jonaburg";
Expand All @@ -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";
Expand Down

0 comments on commit 3af4a82

Please sign in to comment.