about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/autopair.nix
blob: 7c75cc12360103383f40263796904ac27babf05e (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.4";

  src = fetchFromGitHub {
    owner = "jorgebucaran";
    repo = "autopair.fish";
    rev = version;
    sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
  };

  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; [ figsoda kidonng pyrox0 ];
  };
}