mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-12-16 17:11:05 +00:00
treewide. complete refactor
Lots of cleaning up, I cannot be arsed to commit everything one-by-one
This commit is contained in:
parent
a704a123ec
commit
5b7812600d
24 changed files with 631 additions and 464 deletions
26
pkgs/foot-transparent/package.nix
Normal file
26
pkgs/foot-transparent/package.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
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];
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue