fuzzel-git: init

This commit is contained in:
raf 2024-08-13 21:29:39 +03:00
commit 1a78d86c9c
Signed by: NotAShelf
GPG key ID: AF26552424E53993
4 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,27 @@
{
lib,
fetchFromGitea,
fuzzel,
pins,
date,
...
}:
fuzzel.overrideAttrs (let
pin = pins.fuzzel;
in {
pname = "foot-transparent";
version = "0-${date}-unstable";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fuzzel";
rev = pin.revision;
sha256 = pin.hash;
};
meta = {
description = "Patched version of Fuzzel app launcher that tracks latest git revision";
mainProgram = "fuzzel";
maintainers = with lib.maintainers; [NotAShelf];
};
})