Merge pull request #34113 from jlesquembre/neovim

neovim: 0.2.1 -> 0.2.2

authored by

Jörg Thalheim and committed by
GitHub
5c041ae5 f2e5b7e2

+12 -12
+2 -2
pkgs/applications/editors/neovim/default.nix
··· 39 39 40 40 neovim = stdenv.mkDerivation rec { 41 41 name = "neovim-unwrapped-${version}"; 42 - version = "0.2.1"; 42 + version = "0.2.2"; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "neovim"; 46 46 repo = "neovim"; 47 47 rev = "v${version}"; 48 - sha256 = "19ppj0i59kk70j09gap6azm0jm4y95fr5fx7n9gx377y3xjs8h03"; 48 + sha256 = "1dxr29d0hyag7snbww5s40as90412qb61rgj7gd9rps1iccl9gv4"; 49 49 }; 50 50 51 51 enableParallelBuilding = true;
+3 -3
pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - msgpack (1.1.0) 5 - multi_json (1.12.2) 6 - neovim (0.6.1) 4 + msgpack (1.2.2) 5 + multi_json (1.13.1) 6 + neovim (0.6.2) 7 7 msgpack (~> 1.0) 8 8 multi_json (~> 1.0) 9 9
+7 -7
pkgs/applications/editors/neovim/ruby_provider/gemset.nix
··· 2 2 msgpack = { 3 3 source = { 4 4 remotes = ["https://rubygems.org"]; 5 - sha256 = "0ck7w17d6b4jbb8inh1q57bghi9cjkiaxql1d3glmj1yavbpmlh7"; 5 + sha256 = "1ai0sfdv9jnr333fsvkn7a8vqvn0iwiw83yj603a3i68ds1x6di1"; 6 6 type = "gem"; 7 7 }; 8 - version = "1.1.0"; 8 + version = "1.2.2"; 9 9 }; 10 10 multi_json = { 11 11 source = { 12 12 remotes = ["https://rubygems.org"]; 13 - sha256 = "1raim9ddjh672m32psaa9niw67ywzjbxbdb8iijx3wv9k5b0pk2x"; 13 + sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; 14 14 type = "gem"; 15 15 }; 16 - version = "1.12.2"; 16 + version = "1.13.1"; 17 17 }; 18 18 neovim = { 19 19 dependencies = ["msgpack" "multi_json"]; 20 20 source = { 21 21 remotes = ["https://rubygems.org"]; 22 - sha256 = "1dnv2pdl8lwwy4av8bqc6kdlgxw88dmajm4fkdk6hc7qdx1sw234"; 22 + sha256 = "15r3j9bwlpm1ry7cp6059xb0irvsvvlmw53i28z6sf2khwfj5j53"; 23 23 type = "gem"; 24 24 }; 25 - version = "0.6.1"; 25 + version = "0.6.2"; 26 26 }; 27 - } 27 + }