nixvimConfig/plugins/astroui/package.nix

22 lines
407 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
2024-06-05 14:45:25 +02:00
let
2025-02-08 13:42:52 +01:00
version = "2.6.0";
in
2024-06-05 14:45:25 +02:00
pkgs.vimUtils.buildVimPlugin {
inherit version;
name = "astroui";
src = pkgs.fetchFromGitHub {
owner = "astronvim";
repo = "astroui";
rev = "v${version}";
2025-02-08 13:42:52 +01:00
hash = "sha256-kygFyXSIXQENWxGKgJAf5Aid5kfKWMsqTxckXbI6gyE=";# "sha256-nmcqJq4L6XFrgrORan5x+WCwSfU3FC4D6Zux45YnIUQ=";
2024-06-05 14:45:25 +02:00
};
2025-02-08 13:42:52 +01:00
buildInputs = [
pkgs.vimPlugins.astrocore
];
2024-06-05 14:45:25 +02:00
}