mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-01 11:01:16 +00:00
fuzzel-git: init
This commit is contained in:
parent
439452c9d9
commit
1a78d86c9c
4 changed files with 41 additions and 1 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -16,6 +16,7 @@ jobs:
|
||||||
- ani-cli
|
- ani-cli
|
||||||
- cloneit
|
- cloneit
|
||||||
- foot-transparent
|
- foot-transparent
|
||||||
|
- fuzzel-git
|
||||||
- headscale-ui
|
- headscale-ui
|
||||||
- mastodon-bird-ui
|
- mastodon-bird-ui
|
||||||
- zsh-stripped
|
- zsh-stripped
|
||||||
|
|
|
@ -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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| headscale-ui | A web frontend for the headscale Tailscale-compatible coordination server |
|
||||||
| mastodon-bird-ui | Mastodon web UI, but strongly inspired by Twitter. |
|
| 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 `#` |
|
| zsh-stripped | ZSH with newinstall scripts removed, and patches to handle special characters such as `^` or `#` |
|
||||||
|
|
|
@ -44,6 +44,17 @@
|
||||||
"url": null,
|
"url": null,
|
||||||
"hash": "1znfk64kimm0vr3alvj66i1yn5glig3bw60n2lv9cn4jzi1b7qhb"
|
"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": {
|
"mov-cli": {
|
||||||
"type": "GitRelease",
|
"type": "GitRelease",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
27
pkgs/fuzzel-git/package.nix
Normal file
27
pkgs/fuzzel-git/package.nix
Normal 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];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in a new issue