From d4b960550bc8a8e177c161864306bb8cba7d3515 Mon Sep 17 00:00:00 2001 From: Evan Danaher Date: Wed, 4 Jan 2017 11:59:27 -0500 Subject: [PATCH] neovim: Inherit meta into neovim-configured MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- pkgs/applications/editors/neovim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 354aaf6db54..a9a9b6952bd 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -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 ];