This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-flake/nix/lib/mkNeovimPlugin.nix

7 lines
115 B
Nix

{ pkgs, ... }:
src: pname:
pkgs.vimUtils.buildVimPlugin {
inherit pname src;
version = src.lastModifiedDate;
}