mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
21 lines
549 B
Nix
21 lines
549 B
Nix
{ 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 thehedgeh0g ];
|
|
};
|
|
}
|