Unverified Commit b2f9b4d0 authored by Elis Hirwing's avatar Elis Hirwing Committed by GitHub
Browse files

Merge pull request #222253 from drupol/php/bumps-march-2023

PHP: Bumps of March 2023
parents cbfdeba0 64362896
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@

let
  base = callPackage ./generic.nix (_args // {
    version = "8.1.16";
    hash = "sha256-zZ8OoU2C2UVVh6SaC2yAKnuNj/eXA/n0ixfbAQ+2M84=";
    version = "8.1.17";
    hash = "sha256-9Pspig6wkflE7OusV7dtqudoqXDC9RYQpask802MDK8=";
  });

in
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@

let
  base = callPackage ./generic.nix (_args // {
    version = "8.2.3";
    hash = "sha256-h7tYhl849eKUGBMCkVLOohAv4pYbtNaLiPgx3dBUjQ8=";
    version = "8.2.4";
    hash = "sha256-eRhvlL1RDbhuMeU13USCd6Hrkqh4eDA6Hq1EYC2LEZc=";
  });

in
+5 −8
Original line number Diff line number Diff line
{ mkDerivation, fetchurl, makeWrapper, unzip, lib, php }:
{ mkDerivation, fetchurl, makeBinaryWrapper, unzip, lib, php }:

let
mkDerivation rec {
  pname = "composer";
  version = "2.5.1";
in
mkDerivation {
  inherit pname version;
  version = "2.5.4";

  src = fetchurl {
    url = "https://github.com/composer/composer/releases/download/${version}/composer.phar";
    sha256 = "sha256-8blP7hGlvWoarl13yNomnfJ8cF/MgG6/TIwub6hkXCA=";
    sha256 = "sha256-kc5sv5Rj6uhq6dXCHUL6pgGlGfP7srYjpV7iRngHm9M=";
  };

  dontUnpack = true;

  nativeBuildInputs = [ makeWrapper ];
  nativeBuildInputs = [ makeBinaryWrapper ];

  installPhase = ''
    runHook preInstall