Commit e794417
Changed files (3)
pkgs
helix-plugins
pkgs/helix-plugins/default.nix
@@ -19,6 +19,8 @@ lib.makeScope newScope (
helix-file-watcher = callPackage ./helix-file-watcher.nix {};
+ notify = callPackage ./notify.nix {};
+
oil = callPackage ./oil.nix {};
scooter = callPackage ./scooter.nix {};
pkgs/helix-plugins/notify.nix
@@ -0,0 +1,23 @@
+{
+ lib,
+ buildHelixPlugin,
+ fetchFromGitHub,
+ ...
+}:
+buildHelixPlugin {
+ pname = "notify.hx";
+ version = "unstable-2026-05-30";
+
+ src = fetchFromGitHub {
+ owner = "chuwy";
+ repo = "notify.hx";
+ rev = "0a328073e6d3e5041346374ae747c275ab8ce746";
+ hash = "sha256-shKUVnJw2j0yYO+mTHsKie+d1VrJGWDTRul+PTpqlhs=";
+ };
+
+ meta = {
+ description = "A notification engine for Helix";
+ homepage = "https://github.com/chuwy/notify.hx";
+ license = lib.licenses.mit;
+ };
+}
README.md
@@ -37,6 +37,7 @@
| `helixPlugins.forest` | [forest.hx](https://github.com/Ra77a3l3-jar/forest.hx) | `unstable-2026-07-06` | [MIT](https://spdx.org/licenses/MIT.html) | A file explorer tree for Helix |
| `helixPlugins.glyph` | [glyph.hx](https://github.com/Ra77a3l3-jar/glyph.hx) | `unstable-2026-07-06` | [MIT](https://spdx.org/licenses/MIT.html) | Shared icon library for Helix plugins |
| `helixPlugins.helix-file-watcher` | [helix-file-watcher](https://github.com/mattwparas/helix-file-watcher) | `unstable-2026-05-21` | Not specified | Helix file watcher plugin |
+| `helixPlugins.notify` | [notify.hx](https://github.com/chuwy/notify.hx) | `unstable-2026-05-30` | [MIT](https://spdx.org/licenses/MIT.html) | A notification engine for Helix |
| `helixPlugins.oil` | [oil.hx](https://github.com/Ra77a3l3-jar/oil.hx) | `unstable-2026-06-21` | [MIT](https://spdx.org/licenses/MIT.html) | File Manager in a buffer for Helix editor |
| `helixPlugins.scooter` | [scooter.hx](https://github.com/thomasschafer/scooter.hx) | `unstable-2026-06-22` | [MIT](https://spdx.org/licenses/MIT.html) | Interactive find-and-replace Helix plugin |
| `helixPlugins.trail` | [trail.hx](https://github.com/Ra77a3l3-jar/trail.hx) | `unstable-2026-07-06` | [MIT](https://spdx.org/licenses/MIT.html) | A recent-project picker for Helix |