3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/shells/fish/plugins/hydro.nix
Mr Hedgehog 8a0e148134
fishPlugins.hydro: init at d487506 (#163325)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-03-10 14:13:39 +01:00

21 lines
546 B
Nix

{ 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 ];
};
}