top-level/output: include meta in package

Required to prevent errors due to missing license information in
neovim-wrapper.
This commit is contained in:
Austin Horstman 2024-08-15 22:28:28 -05:00
parent ebd2182b44
commit 6ab17b1b2e
No known key found for this signature in database

View file

@ -251,7 +251,7 @@ in
name = "neovim-byte-compiled-${lib.getVersion config.package}"; name = "neovim-byte-compiled-${lib.getVersion config.package}";
paths = [ config.package ]; paths = [ config.package ];
# Required attributes from original neovim package # Required attributes from original neovim package
inherit (config.package) lua; inherit (config.package) lua meta;
nativeBuildInputs = [ helpers.byteCompileLuaHook ]; nativeBuildInputs = [ helpers.byteCompileLuaHook ];
postBuild = '' postBuild = ''
# Replace Nvim's binary symlink with a regular file, # Replace Nvim's binary symlink with a regular file,