summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/fish/plugins/async-prompt.nix
blob: e96a8465cc0a49b6b8d04fa0d7584a83007204a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
}:

buildFishPlugin rec {
  pname = "async-prompt";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "acomagu";
    repo = "fish-async-prompt";
    rev = "v${version}";
    hash = "sha256-HWW9191RP//48HkAHOZ7kAAAPSBKZ+BW2FfCZB36Y+g=";
  };

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