Merge pull request #255875 from NixOS/fix-issue-255860

build-support/php/composer-local-repo-plugin: 1.0.0 -> 1.0.2

authored by

Elis Hirwing and committed by
GitHub
856fd331 97d620de

+3 -3
+1 -1
pkgs/build-support/php/hooks/composer-install-hook.sh
··· 41 41 42 42 # Since this file cannot be generated in the composer-repository-hook.sh 43 43 # because the file contains hardcoded nix store paths, we generate it here. 44 - composer-local-repo-plugin --no-ansi build-local-repo -p "${composerRepository}" > packages.json 44 + composer-local-repo-plugin --no-ansi build-local-repo -m "${composerRepository}" . 45 45 46 46 # Remove all the repositories of type "composer" 47 47 # from the composer.json file.
+2 -2
pkgs/build-support/php/pkgs/composer-local-repo-plugin.nix
··· 27 27 in 28 28 stdenvNoCC.mkDerivation (finalAttrs: { 29 29 pname = "composer-local-repo-plugin"; 30 - version = "1.0.0"; 30 + version = "1.0.2"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "nix-community"; 34 34 repo = "composer-local-repo-plugin"; 35 35 rev = finalAttrs.version; 36 - hash = "sha256-sjWV4JXK8YJ5XLASMPipKlk9u57352wIDV2PPFIP+sk="; 36 + hash = "sha256-L1DPAINlYiC/HdcgDpI72OI58v8LWfhZVuS1vtNDnEw="; 37 37 }; 38 38 39 39 COMPOSER_CACHE_DIR = "/dev/null";