From d9f5a82c8c957de94cb2c66b989bfeccbfc841b1 Mon Sep 17 00:00:00 2001 From: Jens Nolte Date: Sat, 1 Oct 2022 07:27:06 +0200 Subject: [PATCH] neovim: 0.7.2 -> 0.8.0 --- pkgs/applications/editors/neovim/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 8d8618c881cd..e5f1d658b5d7 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -26,13 +26,13 @@ let in stdenv.mkDerivation rec { pname = "neovim-unwrapped"; - version = "0.7.2"; + version = "0.8.0"; src = fetchFromGitHub { owner = "neovim"; repo = "neovim"; rev = "v${version}"; - sha256 = "sha256-eKKQNM02Vhy+3yL2QV+0FSEpcniEa5Aq6hkAUIgLo1k="; + sha256 = "sha256-mVeVjkP8JpTi2aW59ZuzQPi5YvEySVAtxko7xxAx/es="; }; patches = [ @@ -104,9 +104,6 @@ in ++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON" ; - # triggers on buffer overflow bug while running tests - hardeningDisable = [ "fortify" ]; - preConfigure = lib.optionalString stdenv.isDarwin '' substituteInPlace src/nvim/CMakeLists.txt --replace " util" "" '';