summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/fish/plugins/hydro.nix
blob: 11a956e4e0016ebaf77ebcac6087df8bc7d09b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
  unstableGitUpdater,
}:

buildFishPlugin {
  pname = "hydro";
  version = "0-unstable-2026-02-24";

  src = fetchFromGitHub {
    owner = "jorgebucaran";
    repo = "hydro";
    rev = "f130b55ee3eaf099eccf588e2a62e5447068d120";
    hash = "sha256-Dfq974KpD1mtQKznIlkXfZfDnSF/4MfLTA18Ak0LADE=";
  };

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Ultra-pure, lag-free prompt with async Git status";
    homepage = "https://github.com/jorgebucaran/hydro";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ higherorderlogic ];
  };
}