mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			243 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 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";
 | |
|     };
 | |
|   };
 | |
| }
 | 
