21 lines
529 B
Nix
21 lines
529 B
Nix
|
{ lib, buildFishPlugin, fetchFromGitHub }:
|
||
|
|
||
|
buildFishPlugin rec {
|
||
|
pname = "autopair";
|
||
|
version = "1.0.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jorgebucaran";
|
||
|
repo = "autopair.fish";
|
||
|
rev = version;
|
||
|
sha256 = "sha256-l6WJ2kjDO/TnU9FSigjxk5xFp90xl68gDfggkE/wrlM=";
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Auto-complete matching pairs in the Fish command line";
|
||
|
homepage = "https://github.com/jorgebucaran/autopair.fish";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ kidonng ];
|
||
|
};
|
||
|
}
|