mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
neovim: Inherit meta into neovim-configured
When adding neovim's configure option to config.nix, builds fail with error: attribute ‘platforms’ missing, at /nix/store/*/nixos/pkgs/applications/editors/neovim/qt.nix:41:28 Inheriting meta into neovim-configured fixes this, and seems reasonable.
This commit is contained in:
parent
68ab32fbf8
commit
d4b960550b
@ -167,7 +167,7 @@ let
|
||||
|
||||
in if (vimAlias == false && configure == null) then neovim else stdenv.mkDerivation {
|
||||
name = "neovim-${neovim.version}-configured";
|
||||
inherit (neovim) version;
|
||||
inherit (neovim) version meta;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user