summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-04-11 22:00:39 +0200
committerGitHub <noreply@github.com>2023-04-11 22:00:39 +0200
commit73d02b5567afd4af74a11edf3c4453a96dfb61ee (patch)
treebeaa1a4a1264a98f1f4207015d18239e65b4efbf /pkgs/applications/editors/neovim
parent547a1177c8d05e1afc75fb1faabcdf9c5c205c01 (diff)
parent8eb9ed0cd532e776c7cba121c1f900b75980391f (diff)
downloadnixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar.gz
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar.bz2
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar.lz
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar.xz
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.tar.zst
nixpkgs-73d02b5567afd4af74a11edf3c4453a96dfb61ee.zip
Merge pull request #225152 from GaetanLepage/neovim
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/default.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 83d6796e684..fb850c7ca36 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;