1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6
7buildFishPlugin rec {
8 pname = "autopair";
9 version = "1.0.4";
10
11 src = fetchFromGitHub {
12 owner = "jorgebucaran";
13 repo = "autopair.fish";
14 rev = version;
15 sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
16 };
17
18 meta = with lib; {
19 description = "Auto-complete matching pairs in the Fish command line";
20 homepage = "https://github.com/jorgebucaran/autopair.fish";
21 license = licenses.mit;
22 maintainers = with maintainers; [
23 figsoda
24 kidonng
25 pyrox0
26 ];
27 };
28}