nix/pkgs/vim-darcula-theme.nix
2024-07-04 01:14:24 +02:00

13 lines
284 B
Nix

{
lib,
pkgs,
}:
pkgs.vimUtils.buildVimPlugin {
name = "vim-darcula-theme";
src = pkgs.fetchFromGitHub {
owner = "doums";
repo = "darcula";
rev = "faf8dbab27bee0f27e4f1c3ca7e9695af9b1242b";
sha256 = "sha256-Gn+lmlYxSIr91Bg3fth2GAQou2Nd1UjrLkIFbBYlmF8=";
};
}