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

Also fix https://github.com/NixOS/nixpkgs/issues/255860
This commit is contained in:
Pol Dellaiera 2023-09-18 14:21:26 +02:00
parent 17a46d09ac
commit 6e55577f33
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ composerInstallBuildHook() {
# Since this file cannot be generated in the composer-repository-hook.sh
# because the file contains hardcoded nix store paths, we generate it here.
composer-local-repo-plugin --no-ansi build-local-repo -p "${composerRepository}" > packages.json
composer-local-repo-plugin --no-ansi build-local-repo -m "${composerRepository}" .
# Remove all the repositories of type "composer"
# from the composer.json file.

View file

@ -27,13 +27,13 @@ let
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "composer-local-repo-plugin";
version = "1.0.0";
version = "1.0.2";
src = fetchFromGitHub {
owner = "nix-community";
repo = "composer-local-repo-plugin";
rev = finalAttrs.version;
hash = "sha256-sjWV4JXK8YJ5XLASMPipKlk9u57352wIDV2PPFIP+sk=";
hash = "sha256-L1DPAINlYiC/HdcgDpI72OI58v8LWfhZVuS1vtNDnEw=";
};
COMPOSER_CACHE_DIR = "/dev/null";