Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 11df600bf897
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1daec9d27c68
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on May 2, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    nbbeeken Neal Beeken
    Copy the full SHA
    cb9f4f1 View commit details

Commits on May 7, 2018

  1. Merge pull request #39696 from concatime/master

    Updating dependencies of neovim
    matthewbauer authored May 7, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    nbbeeken Neal Beeken
    Copy the full SHA
    1daec9d View commit details
4 changes: 2 additions & 2 deletions pkgs/applications/editors/neovim/ruby_provider/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
GEM
remote: https://rubygems.org/
specs:
msgpack (1.2.2)
msgpack (1.2.4)
multi_json (1.13.1)
neovim (0.6.2)
neovim (0.7.0)
msgpack (~> 1.0)
multi_json (~> 1.0)

8 changes: 4 additions & 4 deletions pkgs/applications/editors/neovim/ruby_provider/gemset.nix
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
msgpack = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ai0sfdv9jnr333fsvkn7a8vqvn0iwiw83yj603a3i68ds1x6di1";
sha256 = "09xy1wc4wfbd1jdrzgxwmqjzfdfxbz0cqdszq2gv6rmc3gv1c864";
type = "gem";
};
version = "1.2.2";
version = "1.2.4";
};
multi_json = {
source = {
@@ -19,9 +19,9 @@
dependencies = ["msgpack" "multi_json"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "15r3j9bwlpm1ry7cp6059xb0irvsvvlmw53i28z6sf2khwfj5j53";
sha256 = "0b487dzz41im8cwzvfjqgf8kkrp6mpkvcbzhazrmqqw8gxyvfbq4";
type = "gem";
};
version = "0.6.2";
version = "0.7.0";
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/neovim/default.nix
Original file line number Diff line number Diff line change
@@ -11,11 +11,11 @@

buildPythonPackage rec {
pname = "neovim";
version = "0.2.4";
version = "0.2.6";

src = fetchPypi {
inherit pname version;
sha256 = "0accfgyvihs08bwapgakx6w93p4vbrq2448n2z6gw88m2hja9jm3";
sha256 = "0xlj54w9bnmq4vidk6r08hwa6az7drahi08w1qf4j9q45rs8mrbc";
};

checkInputs = [ nose ];