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

Commits on Mar 25, 2018

  1. oniguruma: 6.6.1 -> 6.7.1

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 6.7.1 with grep in /nix/store/adypaqqfpnmali0662725r7xdzgyqqh0-onig-6.7.1
    - directory tree listing: https://gist.github.com/b40671987a847be6597a16cb977ff6a4
    ryantm authored and matthewbauer committed Mar 25, 2018
    Copy the full SHA
    642b62d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/oniguruma/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/oniguruma/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "onig-${version}";
version = "6.6.1";
version = "6.7.1";

src = fetchFromGitHub {
owner = "kkos";
repo = "oniguruma";
rev = "v${version}";
sha256 = "062g5443dyxsraq346panfqvbd6wal6nmb336n4dw1rszx576sxz";
sha256 = "07xbx4f3h1aqvy6587xbr8fgcn679ph3bd86pp144y0agzw0d0q2";
};

nativeBuildInputs = [ cmake ];