Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "hydro";
5 version = "unstable-2022-02-21";
6
7 src = fetchFromGitHub {
8 owner = "jorgebucaran";
9 repo = "hydro";
10 rev = "d4875065ceea226f58ead97dd9b2417937344d6e";
11 sha256 = "sha256-nXeDnqqOuZyrqGTPEQtYlFvrFvy1bZVMF4CA37b0lsE=";
12 };
13
14 meta = with lib; {
15 description = "Ultra-pure, lag-free prompt with async Git status";
16 homepage = "https://github.com/jorgebucaran/hydro";
17 license = licenses.mit;
18 maintainers = with maintainers; [ thehedgeh0g ];
19 };
20}