3
0
Fork 0
forked from mirrors/nixpkgs

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

PHP: Bumps of March 2023
This commit is contained in:
Elis Hirwing 2023-03-21 07:54:40 +01:00 committed by GitHub
commit b2f9b4d038
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 12 deletions

View file

@ -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

View file

@ -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

View file

@ -1,20 +1,17 @@
{ 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