28 lines
567 B
Nix
28 lines
567 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
}
|