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

Commits on Mar 8, 2019

  1. php71: 7.1.26 -> 7.1.27

    Izorkin committed Mar 8, 2019
    Copy the full SHA
    6272753 View commit details
  2. php72: 7.2.15 -> 7.2.16

    Izorkin committed Mar 8, 2019
    Copy the full SHA
    c6290e3 View commit details
  3. php73: 7.3.2 -> 7.3.3

    Izorkin committed Mar 8, 2019
    Copy the full SHA
    768bb17 View commit details

Commits on Mar 11, 2019

  1. Merge pull request #57066 from Izorkin/php

    Update php packages
    etu authored Mar 11, 2019
    Copy the full SHA
    eeecb9d View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/development/interpreters/php/default.nix
12 changes: 6 additions & 6 deletions pkgs/development/interpreters/php/default.nix
Original file line number Diff line number Diff line change
@@ -248,24 +248,24 @@ let

in {
php71 = generic {
version = "7.1.26";
sha256 = "1riaaizyl0jv9p6b8sm8xxj8iqz4p4dddwdag03n1r67dfl1qdav";
version = "7.1.27";
sha256 = "0jzcyilvdy05w30vz5ln46lqm9hi36h5bibiwhl1b4a1179yrmys";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php71-darwin-isfinite.patch;
};

php72 = generic {
version = "7.2.15";
sha256 = "0m05dmad138qfxcb2z4czf9pfv1746g9yzlch48kjikajhb7cgn9";
version = "7.2.16";
sha256 = "0f3zkv803banqdrhj5ixfg973fnrsvn4hcij2k6r91nmac0d22ic";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php72-darwin-isfinite.patch;
};

php73 = generic {
version = "7.3.2";
sha256 = "1p8amf91i6lrrphd6ypfh3kic64bpqf04dxp7dj1xxnjrgd50vwl";
version = "7.3.3";
sha256 = "1riw0a1mzc5ymaj02rni57l5pyfkxl0ygf1l39q7ksnz7aa9x5k1";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php73-darwin-isfinite.patch;