Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "async-prompt";
5 version = "1.2.0";
6
7 src = fetchFromGitHub {
8 owner = "acomagu";
9 repo = "fish-async-prompt";
10 rev = "v${version}";
11 hash = "sha256-B7Ze0a5Zp+5JVsQUOv97mKHh5wiv3ejsDhJMrK7YOx4=";
12 };
13
14 meta = with lib; {
15 description = "Make your prompt asynchronous to improve the reactivity";
16 homepage = "https://github.com/acomagu/fish-async-prompt";
17 license = licenses.mit;
18 maintainers = with maintainers; [ figsoda ];
19 };
20}