neovim: 0.9.0 -> 0.9.1

authored by

Gaetan Lepage and committed by
Matthieu Coudron
f1423fd5 3890c1aa

+2 -11
+2 -11
pkgs/applications/editors/neovim/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, gettext, msgpack, libtermkey, libiconv 2 - , fetchpatch 3 2 , libuv, lua, ncurses, pkg-config 4 3 , unibilium, gperf 5 4 , libvterm-neovim ··· 37 36 in 38 37 stdenv.mkDerivation rec { 39 38 pname = "neovim-unwrapped"; 40 - version = "0.9.0"; 39 + version = "0.9.1"; 41 40 42 41 src = fetchFromGitHub { 43 42 owner = "neovim"; 44 43 repo = "neovim"; 45 44 rev = "v${version}"; 46 - hash = "sha256-4uCPWnjSMU7ac6Q3LT+Em8lVk1MuSegxHMLGQRtFqAs="; 45 + hash = "sha256-G51qD7GklEn0JrneKSSqDDx0Odi7W2FjdQc0ZDE9ZK4="; 47 46 }; 48 47 49 48 patches = [ ··· 51 50 # necessary so that nix can handle `UpdateRemotePlugins` for the plugins 52 51 # it installs. See https://github.com/neovim/neovim/issues/9413. 53 52 ./system_rplugin_manifest.patch 54 - 55 - # fix bug with the gsub directive 56 - # https://github.com/neovim/neovim/pull/23015 57 - (fetchpatch { 58 - name = "use-the-correct-replacement-args-for-gsub-directive.patch"; 59 - url = "https://github.com/neovim/neovim/commit/ccc0980f86c6ef9a86b0e5a3a691f37cea8eb776.patch"; 60 - hash = "sha256-sZWM6M8jCL1e72H0bAc51a6FrH0mFFqTV1gGLwKT7Zo="; 61 - }) 62 53 ]; 63 54 64 55 dontFixCmake = true;