23 lines
555 B
Nix
23 lines
555 B
Nix
{
|
|
lib,
|
|
vimUtils,
|
|
fetchFromGitHub,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
pname = "oasis.nvim";
|
|
version = "unstable-2025-11-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uhs-robert";
|
|
repo = "oasis.nvim";
|
|
rev = "691703cb10ceb425cf18a95262051b4b1bc1b5c7";
|
|
hash = "sha256-knMmbmxD+78cnuSu4LGiCISr3Gt6ieYY22SaTYKtTec=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A collection of 18 desert-inspired Neovim colorschemes.";
|
|
homepage = "https://github.com/uhs-robert/oasis.nvim";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|