depot/third_party/nixpkgs/pkgs/shells/fish/plugins/hydro.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

20 lines
558 B
Nix

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