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: 57507ca0b1e6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a6549852e829
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 5, 2019

  1. Merge #62590: vim: 8.1.1234 -> 8.1.1432 (security)

    (cherry picked from commit 7c53ac0)
    Picked from staging to master, as it's not really a big rebuild
    and it includes an important security fix:
    https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md
    Ma27 authored and vcunat committed Jun 5, 2019
    Copy the full SHA
    a654985 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/editors/vim/common.nix
4 changes: 2 additions & 2 deletions pkgs/applications/editors/vim/common.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ lib, fetchFromGitHub }:
rec {
version = "8.1.1234";
version = "8.1.1432";

src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
sha256 = "1ywrgciwqh1kg93kfq54zh0gdxwzgy1h49wsjdsl6s4mfscmpwng";
sha256 = "0f8isi84dcmsfvvjzayys57zf4j56wngnpn9hfj0jn1z7x3vdbww";
};

enableParallelBuilding = true;