nyxexprs/pkgs/foot-transparent/package.nix
NotAShelf 5b7812600d
treewide. complete refactor
Lots of cleaning up, I cannot be arsed to commit everything one-by-one
2024-07-22 00:19:39 +03:00

27 lines
598 B
Nix

{
lib,
fetchFromGitea,
foot,
...
}:
foot.overrideAttrs (prev: let
version = "2024-03-14-unstable";
in {
inherit version;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "foot";
rev = "aea16ba5d2896ef22bf0bea45e5e8142c0ff1c2a";
hash = "sha256-CeDQriQIbyx3V1l719g3AuhnVVYYc63kA0BQpEFQ26A=";
};
patches = (prev.patches or []) ++ [./0001-fullscreen-transparency.patch];
mesonFlags = (prev.mesonFlags or []) ++ ["-Dfullscreen_alpha=true"];
meta = {
mainProgram = "foot";
maintainers = with lib.maintainers; [NotAShelf];
};
})