mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-06 10:02:23 +00:00
13 lines
243 B
Nix
13 lines
243 B
Nix
{lib, ...}: let
|
|
inherit (lib.types) package;
|
|
inherit (lib.options) mkOption;
|
|
in {
|
|
options.vim.build = {
|
|
finalPackage = mkOption {
|
|
type = package;
|
|
readOnly = true;
|
|
description = "final output package";
|
|
};
|
|
};
|
|
}
|