Unverified Commit 20bcaf80 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

php84: 8.4.12 -> 8.4.13 (#448351)

parents 7da940d3 9fefb7cd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@ let
  base = callPackage ./generic.nix (
    _args
    // {
      version = "8.4.12";
      hash = "sha256-Lr1TgusJDWAwh9pkntId5ksHlha8mgKrvFMribF+NGg=";
      version = "8.4.13";
      hash = "sha256-hRgd3Kez4D8UhSGwQ71iQRlQ1GjGZ9tkAEefGxCBIZQ=";
    }
  );
in
+9 −0
Original line number Diff line number Diff line
{
  stdenv,
  fetchpatch,
  config,
  callPackages,
  lib,
@@ -446,6 +447,14 @@ lib.makeScope pkgs.newScope (
              configureFlags = [
                "--enable-dom"
              ];
              patches = lib.optionals (lib.versionAtLeast php.version "8.4") [
                # Fix build of ext-dom.
                # https://github.com/php/php-src/pull/20023 (will be part of 8.4.14)
                (fetchpatch {
                  url = "https://github.com/php/php-src/commit/4fe040290da2822c70d3b60d30a2c1256264735d.patch";
                  hash = "sha256-hCs59X5gCApXMjU9dKEtgdTJBHYq3BcKr9tlQjRCTIA=";
                })
              ];
            }
            {
              name = "enchant";