nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "hydro";
5 version = "unstable-2024-03-24";
6
7 src = fetchFromGitHub {
8 owner = "jorgebucaran";
9 repo = "hydro";
10 rev = "bc31a5ebc687afbfb13f599c9d1cc105040437e1";
11 hash = "sha256-0MMiM0NRbjZPJLAMDXb+Frgm+du80XpAviPqkwoHjDA=";
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; [ pyrox0 ];
19 };
20}