forked from mirrors/nixpkgs
Merge pull request #112661 from 0qq/init/zsh-autopair
This commit is contained in:
commit
64a33ee8ca
|
@ -48,6 +48,12 @@
|
|||
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
|
||||
*/
|
||||
{
|
||||
_0qq = {
|
||||
email = "0qqw0qqw@gmail.com";
|
||||
github = "0qq";
|
||||
githubId = 64707304;
|
||||
name = "Dmitry Kulikov";
|
||||
};
|
||||
_0x4A6F = {
|
||||
email = "mail-maintainer@0x4A6F.dev";
|
||||
name = "Joachim Ernst";
|
||||
|
|
25
pkgs/shells/zsh/zsh-autopair/default.nix
Normal file
25
pkgs/shells/zsh/zsh-autopair/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zsh-autopair";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hlissner";
|
||||
repo = "zsh-autopair";
|
||||
rev = "v${version}";
|
||||
sha256 = "1h0vm2dgrmb8i2pvsgis3lshc5b0ad846836m62y8h3rdb3zmpy1";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -D autopair.zsh $out/share/zsh/${pname}/autopair.zsh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/hlissner/zsh-autopair";
|
||||
description = "A plugin that auto-closes, deletes and skips over matching delimiters in zsh intelligently";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ _0qq ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -9244,6 +9244,8 @@ in
|
|||
|
||||
zsh-autoenv = callPackage ../tools/misc/zsh-autoenv { };
|
||||
|
||||
zsh-autopair = callPackage ../shells/zsh/zsh-autopair { };
|
||||
|
||||
zsh-bd = callPackage ../shells/zsh/zsh-bd { };
|
||||
|
||||
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };
|
||||
|
|
Loading…
Reference in a new issue