about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/autopair.nix
blob: d1036829bfdb896af69184f611e9afd3e97fbbef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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 ];
  };
}