refactor(plugins/astroui): move package to single file

This commit is contained in:
Nicolas Goudry 2024-06-09 09:15:17 +02:00
parent 43e19eb6ad
commit ea090d8ba6
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
2 changed files with 1 additions and 1 deletions

View file

@ -1,17 +0,0 @@
{ pkgs, ... }:
let
version = "2.1.4";
in
pkgs.vimUtils.buildVimPlugin {
inherit version;
name = "astroui";
src = pkgs.fetchFromGitHub {
owner = "astronvim";
repo = "astroui";
rev = "v${version}";
hash = "sha256-nmcqJq4L6XFrgrORan5x+WCwSfU3FC4D6Zux45YnIUQ=";
};
}