Unverified Commit 73d02b55 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #225152 from GaetanLepage/neovim

parents 547a1177 8eb9ed0c
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -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;