2024-03-18 13:33:41 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitea,
|
|
|
|
foot,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
foot.overrideAttrs (prev: let
|
|
|
|
version = "2024-03-14-unstable";
|
|
|
|
in {
|
|
|
|
inherit version;
|
|
|
|
src = fetchFromGitea {
|
|
|
|
domain = "codeberg.org";
|
|
|
|
owner = "dnkl";
|
|
|
|
repo = "foot";
|
2024-05-10 20:21:33 +00:00
|
|
|
rev = "3a7ea1f44b5cac16c4d67cddb75c02638d59c55c";
|
|
|
|
hash = "sha256-1kDm5XSFz4Q4lAcPkK8h4eJWzx7VDKqEHKjBDbbYhO0=";
|
2024-03-18 13:33:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = (prev.patches or []) ++ [./0001-fullscreen-transparency.patch];
|
|
|
|
mesonFlags = (prev.mesonFlags or []) ++ ["-Dfullscreen_alpha=true"];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
mainProgram = "foot";
|
|
|
|
maintainers = with lib.maintainers; [NotAShelf];
|
|
|
|
};
|
|
|
|
})
|