Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / shells / zsh / zsh-autopair / default.nix
blobe950eadbcf4013469e863fe57398ae897e0ca6c0
1 { stdenv, lib, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "zsh-autopair";
5   version = "1.0";
7   src = fetchFromGitHub {
8     owner = "hlissner";
9     repo = "zsh-autopair";
10     rev = "v${version}";
11     sha256 = "1h0vm2dgrmb8i2pvsgis3lshc5b0ad846836m62y8h3rdb3zmpy1";
12   };
14   strictDeps = true;
16   installPhase = ''
17     install -D autopair.zsh $out/share/zsh/${pname}/autopair.zsh
18   '';
20   meta = with lib; {
21     homepage = "https://github.com/hlissner/zsh-autopair";
22     description = "Plugin that auto-closes, deletes and skips over matching delimiters in zsh intelligently";
23     license = licenses.mit;
24     maintainers = with maintainers; [ _0qq ];
25     platforms = platforms.all;
26   };