mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{
|
|
picom,
|
|
lib,
|
|
writeShellScript,
|
|
fetchFromGitHub,
|
|
pcre,
|
|
asciidoctor,
|
|
unstableGitUpdater
|
|
}:
|
|
picom.overrideAttrs (previousAttrs: {
|
|
pname = "picom-pijulius";
|
|
version = "8.2-unstable-2024-10-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pijulius";
|
|
repo = "picom";
|
|
rev = "9977760e5ace3b17453e3cd89d14bc0f8de5b5f9";
|
|
hash = "sha256-lqmZqEmD/+qZg+8UOOGJB6L0FdUuZFN5qBdL593RC/A=";
|
|
};
|
|
|
|
buildInputs = (previousAttrs.buildInputs or [ ]) ++ [ pcre ];
|
|
nativeBuildInputs = (previousAttrs.nativeBuildInputs or [ ]) ++ [ asciidoctor ];
|
|
|
|
meta = {
|
|
inherit (previousAttrs.meta)
|
|
license
|
|
platforms
|
|
mainProgram
|
|
longDescription
|
|
;
|
|
|
|
description = "Pijulius's picom fork with extensive animation support";
|
|
homepage = "https://github.com/pijulius/picom";
|
|
maintainers = with lib.maintainers; [ YvesStraten ];
|
|
};
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
tagFormat = "v([A-Z]+)([a-z]+)|v([1-9]).([1-9])|v([1-9])-rc([1-9])";
|
|
tagConverter = writeShellScript "picom-pijulius-tag-converter.sh" ''
|
|
sed -e 's/v//g' -e 's/([A-Z])([a-z])+/8.2/g' -e 's/-rc([1-9])|-rc//g' -e 's/0/8.2/g'
|
|
'';
|
|
};
|
|
})
|