nixpkgs/pkgs/shells/fish/plugins/autopair.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
549 B
Nix
Raw Normal View History

2022-03-18 19:19:17 +00:00
{ lib, buildFishPlugin, fetchFromGitHub }:
buildFishPlugin rec {
pname = "autopair";
2023-03-10 18:10:35 +00:00
version = "1.0.4";
2022-03-18 19:19:17 +00:00
src = fetchFromGitHub {
owner = "jorgebucaran";
repo = "autopair.fish";
rev = version;
2023-03-10 18:10:35 +00:00
sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
2022-03-18 19:19:17 +00:00
};
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 thehedgeh0g ];
2022-03-18 19:19:17 +00:00
};
}