about summary refs log tree commit diff
path: root/pkgs/development/php-packages/composer/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-02-15 00:12:49 +0000
committerGitHub <noreply@github.com>2024-02-15 00:12:49 +0000
commit600bf6082856d7520ff54f9f4a1cc0668d917258 (patch)
tree24d6fff96836ff39938dcc6b8085d5ae0dd95feb /pkgs/development/php-packages/composer/default.nix
parent18b2a08b16baf1d43ae9e78a8152b3c9fc10448c (diff)
parentce403b10116c6721064e7750088bec40daf39cdc (diff)
Merge release-23.11 into staging-next-23.11
Diffstat (limited to 'pkgs/development/php-packages/composer/default.nix')
-rw-r--r--pkgs/development/php-packages/composer/default.nix14
1 files changed, 13 insertions, 1 deletions
diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix
index 40c6dc80fadff..9443905e73740 100644
--- a/pkgs/development/php-packages/composer/default.nix
+++ b/pkgs/development/php-packages/composer/default.nix
@@ -1,4 +1,4 @@
-{ lib, callPackage, fetchFromGitHub, php, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }:
+{ lib, callPackage, fetchFromGitHub, fetchpatch, php, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }:
 
 php.buildComposerProject (finalAttrs: {
   # Hash used by ../../../build-support/php/pkgs/composer-phar.nix to
@@ -22,6 +22,18 @@ php.buildComposerProject (finalAttrs: {
     hash = "sha256-CKP7CYOuMKpuWdVveET2iLJPKJyCnv5YVjx4DE68UoE=";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "CVE-2024-24821.patch";
+      url = "https://github.com/composer/composer/commit/77e3982918bc1d886843dc3d5e575e7e871b27b7.patch";
+      hash = "sha256-Q7gkPLf59+p++DpfJZeOrAOiWePuGkdGYRaS/rK+Nv4=";
+      excludes = [
+        # Skipping test files, they are not included in the source tarball
+        "tests/*"
+      ];
+    })
+  ];
+
   nativeBuildInputs = [ makeBinaryWrapper ];
 
   postInstall = ''