From 8eb9ed0cd532e776c7cba121c1f900b75980391f Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 7 Apr 2023 14:34:10 +0200 Subject: [PATCH] neovim: 0.8.3 -> 0.9.0 --- pkgs/applications/editors/neovim/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 83d6796e6847..fb850c7ca366 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -35,13 +35,13 @@ let in stdenv.mkDerivation rec { pname = "neovim-unwrapped"; - version = "0.8.3"; + version = "0.9.0"; src = fetchFromGitHub { owner = "neovim"; repo = "neovim"; rev = "v${version}"; - hash = "sha256-ItJ8aX/WUfcAovxRsXXyWKBAI92hFloYIZiv7viPIdQ="; + hash = "sha256-4uCPWnjSMU7ac6Q3LT+Em8lVk1MuSegxHMLGQRtFqAs="; }; patches = [ @@ -49,13 +49,6 @@ in # necessary so that nix can handle `UpdateRemotePlugins` for the plugins # it installs. See https://github.com/neovim/neovim/issues/9413. ./system_rplugin_manifest.patch - # make the build reproducible, rebased version of - # https://github.com/neovim/neovim/pull/21586 - (fetchpatch { - name = "neovim-build-make-generated-source-files-reproducible.patch"; - url = "https://github.com/raboof/neovim/commit/485dd2af3efbfd174163583c46e0bb2a01ff04f1.patch"; - hash = "sha256-9aRVK4lDkL/W4RVjeKptrZFY7rYYBx6/RGR4bQSbCsM="; - }) ]; dontFixCmake = true;