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: ddec346c63f5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 60c4104b7e58
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 2, 2017

  1. phpPackages.apcu: 5.1.2 -> 5.1.8 and enable tests

    See #30734 - 5.1.2 segfaults
    jbboehr committed Nov 2, 2017
    Copy the full SHA
    3c74fcf View commit details

Commits on Nov 3, 2017

  1. Merge pull request #31153 from jbboehr/fix/apcu-5.1.8-m

    phpPackages.apcu: 5.1.2 -> 5.1.8 and enable tests
    Mic92 authored Nov 3, 2017
    Copy the full SHA
    60c4104 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 pkgs/top-level/php-packages.nix
8 changes: 6 additions & 2 deletions pkgs/top-level/php-packages.nix
Original file line number Diff line number Diff line change
@@ -18,9 +18,13 @@ let
};

apcu51 = assert isPhp7; buildPecl {
name = "apcu-5.1.2";
name = "apcu-5.1.8";

sha256 = "0r5pfbjbmdj46h20jm3iqmy969qd27ajyf0phjhgykv6j0cqjlgd";
sha256 = "01dfbf0245d8cc0f51ba16467a60b5fad08e30b28df7846e0dd213da1143ecce";

doCheck = true;
checkTarget = "test";
checkFlagsArray = ["REPORT_EXIT_STATUS=1" "NO_INTERACTION=1"];
};

ast = assert isPhp7; buildPecl {