diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 691f352..4cb125a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,6 @@ jobs: - ani-cli - cloneit - foot-transparent - - fuzzel-git - headscale-ui - mastodon-bird-ui - zsh-stripped diff --git a/README.md b/README.md index d9be20c..c475372 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,7 @@ 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] | -| fuzzel-git | Patched version of Fuzzel that tracks the latest git revision | +| foot-transparent | A patched version of the foot terminal emulator that brings back fullscreen transparency[^1] | | 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 `#` | diff --git a/npins/sources.json b/npins/sources.json index e3f59b6..703b959 100644 --- a/npins/sources.json +++ b/npins/sources.json @@ -44,17 +44,6 @@ "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": { @@ -73,8 +62,8 @@ "nixpkgs": { "type": "Channel", "name": "nixpkgs-unstable", - "url": "https://releases.nixos.org/nixpkgs/nixpkgs-24.11pre665874.19674872444b/nixexprs.tar.xz", - "hash": "1660f7z8rsa392kd5byq5qw2fn54bpry6vc3dg0hrmxmv6qm1h3d" + "url": "https://releases.nixos.org/nixpkgs/nixpkgs-24.11pre664329.154bcb95ad51/nixexprs.tar.xz", + "hash": "0mny6j9ahl87m7cv508dbll8yk29v4xha0bsdwnh1y8zkgsydgqw" }, "rat": { "type": "GitRelease", diff --git a/pkgs/fuzzel-git/package.nix b/pkgs/fuzzel-git/package.nix deleted file mode 100644 index 9cfee2a..0000000 --- a/pkgs/fuzzel-git/package.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - 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]; - }; -})