From e0cd3178e72e5e537265077a51f1ddb5fc05e7ac Mon Sep 17 00:00:00 2001 From: HigherOrderLogic <73709188+HigherOrderLogic@users.noreply.github.com> Date: Tue, 28 Apr 2026 00:24:49 +0000 Subject: [PATCH 1/2] fishPlugins.hydro: add HigherOrderLogic as maintainer --- pkgs/shells/fish/plugins/hydro.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/fish/plugins/hydro.nix b/pkgs/shells/fish/plugins/hydro.nix index d9fbc2fec351..69573b85f1cf 100644 --- a/pkgs/shells/fish/plugins/hydro.nix +++ b/pkgs/shells/fish/plugins/hydro.nix @@ -19,6 +19,6 @@ buildFishPlugin { description = "Ultra-pure, lag-free prompt with async Git status"; homepage = "https://github.com/jorgebucaran/hydro"; license = lib.licenses.mit; - maintainers = [ ]; + maintainers = with lib.maintainers; [ higherorderlogic ]; }; } From 69376d6061485b164a91b56d2293aa42c84dffa0 Mon Sep 17 00:00:00 2001 From: HigherOrderLogic <73709188+HigherOrderLogic@users.noreply.github.com> Date: Tue, 28 Apr 2026 01:01:03 +0000 Subject: [PATCH 2/2] fishPlugins.hydro: add update script --- pkgs/shells/fish/plugins/hydro.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/shells/fish/plugins/hydro.nix b/pkgs/shells/fish/plugins/hydro.nix index 69573b85f1cf..955fd3ce6c3c 100644 --- a/pkgs/shells/fish/plugins/hydro.nix +++ b/pkgs/shells/fish/plugins/hydro.nix @@ -2,6 +2,7 @@ lib, buildFishPlugin, fetchFromGitHub, + unstableGitUpdater, }: buildFishPlugin { @@ -15,6 +16,8 @@ buildFishPlugin { hash = "sha256-8ixve1ws80q5jNdKoooL25Lk7qopVitCMVTucW490fU="; }; + passthru.updateScript = unstableGitUpdater { }; + meta = { description = "Ultra-pure, lag-free prompt with async Git status"; homepage = "https://github.com/jorgebucaran/hydro";