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: 5d1de8ca0fb6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 84926c9480c8
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 6, 2020

  1. php74: 7.4.3 -> 7.4.4

    Changelog: https://www.php.net/ChangeLog-7.php#7.4.4
    (cherry picked from commit faf79b6)
    etu authored and Ma27 committed Apr 6, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    bwoodsend Brénainn Woodsend
    Copy the full SHA
    865abba View commit details
  2. php73: 7.3.15 -> 7.3.16

    Changelog: https://www.php.net/ChangeLog-7.php#7.3.16
    (cherry picked from commit 1118080)
    etu authored and Ma27 committed Apr 6, 2020
    Copy the full SHA
    185b684 View commit details
  3. php72: 7.2.28 -> 7.2.29

    Changelog: https://www.php.net/ChangeLog-7.php#7.2.29
    (cherry picked from commit 8272ebe)
    etu authored and Ma27 committed Apr 6, 2020
    Copy the full SHA
    84926c9 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
@@ -263,23 +263,23 @@ let

in {
php72 = generic {
version = "7.2.28";
sha256 = "18sjvl67z5a2x5s2a36g6ls1r3m4hbrsw52hqr2qsgfvg5dkm5bw";
version = "7.2.29";
sha256 = "08xry2fgqgg8s0ym1hh11wkbr36av3zq1bn4krbciw1b7x8gb8ga";

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

php73 = generic {
version = "7.3.15";
sha256 = "0g84hws15s8gh8iq4h6q747dyfazx47vh3da3whz8d80x83ibgld";
version = "7.3.16";
sha256 = "0bh499v9dfgh9k51w4rird1slb9rh9whp5h37fb84c98d992s1xq";

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

php74 = generic {
version = "7.4.2";
sha256 = "05p8z0ld058yjanxaphy3ka20hn7x7d6nak5sm782w4wprs9k402";
version = "7.4.4";
sha256 = "17w2m4phhpj76x5fx67vgjrlkcczqvky3f5in1kjg2pch90qz3ih";
};
}