about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/async-prompt.nix
blob: ff3a1e6d9891476674c248c3a38b007aca049c4a (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 = "async-prompt";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "acomagu";
    repo = "fish-async-prompt";
    rev = "v${version}";
    hash = "sha256-B7Ze0a5Zp+5JVsQUOv97mKHh5wiv3ejsDhJMrK7YOx4=";
  };

  meta = with lib; {
    description = "Make your prompt asynchronous to improve the reactivity";
    homepage = "https://github.com/acomagu/fish-async-prompt";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}