fishPlugins.async-prompt: init at 1.2.0

This commit is contained in:
figsoda 2023-03-12 19:34:00 -04:00
parent 26d9471ea9
commit 73f2151877
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -1,6 +1,8 @@
{ lib, newScope, config }:
lib.makeScope newScope (self: with self; {
async-prompt = callPackage ./async-prompt.nix { };
autopair = callPackage ./autopair.nix { };
buildFishPlugin = callPackage ./build-fish-plugin.nix { };