fuzzel-git: init

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

View file

@ -16,6 +16,7 @@ jobs:
- ani-cli
- cloneit
- foot-transparent
- fuzzel-git
- headscale-ui
- mastodon-bird-ui
- zsh-stripped

View file

@ -12,7 +12,8 @@ contains a description of the package inside its README.
| alejandra-custom | A patched version of the **Alejandra** Nix formatter, without the pesky ads and spacing patches |
| ani-cli | An up-to-date, auto updated version of ani-cli following auto-updated pins |
| cloneit | A CLI tool to download specific GitHub directories or files |
| foot-transparent | A patched version of the foot terminal emulator that brings back fullscreen transparency[^1] |
| foot-transparent | A patched version of the Foot terminal emulator that brings back fullscreen transparency[^1] |
| fuzzel-git | Patched version of Fuzzel that tracks the latest git revision |
| headscale-ui | A web frontend for the headscale Tailscale-compatible coordination server |
| mastodon-bird-ui | Mastodon web UI, but strongly inspired by Twitter. |
| zsh-stripped | ZSH with newinstall scripts removed, and patches to handle special characters such as `^` or `#` |

View file

@ -44,6 +44,17 @@
"url": null,
"hash": "1znfk64kimm0vr3alvj66i1yn5glig3bw60n2lv9cn4jzi1b7qhb"
},
"fuzzel": {
"type": "Git",
"repository": {
"type": "Git",
"url": "https://codeberg.org/dnkl/fuzzel.git"
},
"branch": "master",
"revision": "f1a5412151358b37dcdcf820e625371f0b5ceec9",
"url": null,
"hash": "1hb2kk2jl9g38fq2895kshki9wsvncsjk3xb15b7pzwnm2gg3j8h"
},
"mov-cli": {
"type": "GitRelease",
"repository": {

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];
};
})