summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/hydro.nix
blob: efc85cfcd0b90a0a244a452a1527680f95efc134 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin rec {
  pname = "hydro";
  version = "d4875065ceea226f58ead97dd9b2417937344d6e";

  src = fetchFromGitHub {
    owner = "jorgebucaran";
    repo = "hydro";
    rev = version;
    sha256 = "sha256-nXeDnqqOuZyrqGTPEQtYlFvrFvy1bZVMF4CA37b0lsE=";
  };

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