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:
Evan Danaher 2017-01-04 11:59:27 -05:00 committed by Rok Garbas
parent 68ab32fbf8
commit d4b960550b

View File

@ -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 ];