mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:59:25 +00:00
25e4165d43
The license names seemed to be incorrect according to the upstream repos.
25 lines
725 B
Nix
25 lines
725 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
stdenv.mkDerivation {
|
|
name = "kak-auto-pairs";
|
|
version = "2019-07-27";
|
|
src = fetchFromGitHub {
|
|
owner = "alexherbo2";
|
|
repo = "auto-pairs.kak";
|
|
rev = "886449b1a04d43e5deb2f0ef4b1aead6084c7a5f";
|
|
sha256 = "0knfhdvslzw1f1r1k16733yhkczrg3yijjz6n2qwira84iv3239j";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/kak/autoload/plugins
|
|
cp -r rc $out/share/kak/autoload/plugins/auto-pairs
|
|
'';
|
|
|
|
meta = with stdenv.lib;
|
|
{ description = "Kakoune extension to enable automatic closing of pairs";
|
|
homepage = "https://github.com/alexherbo2/auto-pairs.kak";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ nrdxp ];
|
|
platform = platforms.all;
|
|
};
|
|
}
|