Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "autopair";
5 version = "1.0.4";
6
7 src = fetchFromGitHub {
8 owner = "jorgebucaran";
9 repo = "autopair.fish";
10 rev = version;
11 sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
12 };
13
14 meta = with lib; {
15 description = "Auto-complete matching pairs in the Fish command line";
16 homepage = "https://github.com/jorgebucaran/autopair.fish";
17 license = licenses.mit;
18 maintainers = with maintainers; [ figsoda kidonng thehedgeh0g ];
19 };
20}