blob: d9fbc2fec351685552edb5d80addf240a4e551b2 (
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
|
{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin {
pname = "hydro";
version = "0-unstable-2025-12-31";
src = fetchFromGitHub {
owner = "jorgebucaran";
repo = "hydro";
rev = "24bb2375e3cb29c71ab790c8cfe98b9069de80c3";
hash = "sha256-8ixve1ws80q5jNdKoooL25Lk7qopVitCMVTucW490fU=";
};
meta = {
description = "Ultra-pure, lag-free prompt with async Git status";
homepage = "https://github.com/jorgebucaran/hydro";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|