Files
ethersync-p2p/contrib/nix/overlay.nix
2025-01-16 08:08:18 -05:00

11 lines
312 B
Nix

# SPDX-FileCopyrightText: 2024 MangoIV <contact@mangoiv.com>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
(final: prev: let
packages = import ./default.nix {pkgs = final;};
in {
inherit (packages) ethersync neovim-with-ethersync;
vimPlugins = prev.vimPlugins // {inherit (packages) nvim-ethersync;};
})