1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6
7buildFishPlugin {
8 pname = "hydro";
9 version = "0-unstable-2024-11-02";
10
11 src = fetchFromGitHub {
12 owner = "jorgebucaran";
13 repo = "hydro";
14 rev = "9c93b89573bd722f766f2190a862ae55e728f6ba";
15 hash = "sha256-QYq4sU41/iKvDUczWLYRGqDQpVASF/+6brJJ8IxypjE=";
16 };
17
18 meta = with lib; {
19 description = "Ultra-pure, lag-free prompt with async Git status";
20 homepage = "https://github.com/jorgebucaran/hydro";
21 license = licenses.mit;
22 maintainers = with maintainers; [ pyrox0 ];
23 };
24}