foot-transparent: rename to foot-git; drop fullscreen transparency patch

This commit is contained in:
raf 2025-04-19 18:47:32 +03:00
commit efe83b353f
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
3 changed files with 28 additions and 158 deletions

28
pkgs/foot-git/package.nix Normal file
View file

@ -0,0 +1,28 @@
{
lib,
fetchFromGitea,
foot,
pins,
date,
...
}:
foot.overrideAttrs (let
pin = pins.foot;
in {
pname = "foot-transparent";
version = "0-unstable-${date}";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "foot";
rev = pin.revision;
sha256 = pin.hash;
};
meta = {
description = "An auto-upgrading version of FOot to ensure we are always up to dates";
mainProgram = "foot";
maintainers = with lib.maintainers; [NotAShelf];
};
})