foot-transparent: update fullscreen-transparency patch
Some checks are pending
Checks / check (NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure) (push) Waiting to run
Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Waiting to run
Checks / build (push) Blocked by required conditions

Thanks @imnotpoz <3
This commit is contained in:
raf 2025-03-20 16:03:22 +03:00
commit 043205a3d8
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 58 additions and 42 deletions

View file

@ -1,6 +1,7 @@
{
lib,
fetchFromGitea,
fcft,
foot,
pins,
date,
@ -21,7 +22,20 @@ in {
};
patches = (prev.patches or []) ++ [./0001-fullscreen-transparency.patch];
mesonFlags = (prev.mesonFlags or []) ++ ["-Dfullscreen_alpha=true"];
mesonFlags = (prev.mesonFlags or []) ++ ["-Dfullscreen-alpha=true"];
nativeBuildInputs =
(prev.nativeBuildInputs or [])
++ [
(fcft.overrideAttrs {
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fcft";
tag = "3.3.1";
hash = "sha256-qgNNowWQhiu6pr9bmWbBo3mHgdkmNpDHDBeTidk32SE=";
};
})
];
meta = {
description = "Patched version of Foor terminal emulator that brings back fullscreen transparency";