From 6ab17b1b2e6bc2c10718025105d452dd929cc058 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 15 Aug 2024 22:28:28 -0500 Subject: [PATCH] top-level/output: include meta in package Required to prevent errors due to missing license information in neovim-wrapper. --- modules/top-level/output.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/top-level/output.nix b/modules/top-level/output.nix index d828cd08..13998071 100644 --- a/modules/top-level/output.nix +++ b/modules/top-level/output.nix @@ -251,7 +251,7 @@ in name = "neovim-byte-compiled-${lib.getVersion config.package}"; paths = [ config.package ]; # Required attributes from original neovim package - inherit (config.package) lua; + inherit (config.package) lua meta; nativeBuildInputs = [ helpers.byteCompileLuaHook ]; postBuild = '' # Replace Nvim's binary symlink with a regular file,