summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/hydro.nix
blob: eddb88a225d207be2e599d020e8367f86313f15c (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 = "unstable-2022-02-21";

  src = fetchFromGitHub {
    owner = "jorgebucaran";
    repo = "hydro";
    rev = "d4875065ceea226f58ead97dd9b2417937344d6e";
    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 ];
  };
}