Skip to content

Commit 8ebd730

Browse files
buildComposerRepository: show composer-repository in logs (eg: nix build) when building the vendor derivation (#355099)
2 parents 98f6ebc + 7caed32 commit 8ebd730

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkgs/build-support/php/builders/v1/build-composer-repository.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ let
4949
composerNoScripts = previousAttrs.composerNoScripts or true;
5050
composerStrictValidation = previousAttrs.composerStrictValidation or true;
5151

52-
name = "${previousAttrs.pname}-${previousAttrs.version}-composer-repository";
52+
name = "${previousAttrs.pname}-composer-repository-${previousAttrs.version}";
5353

5454
# See https://github.com/NixOS/nix/issues/6660
5555
dontPatchShebangs = previousAttrs.dontPatchShebangs or true;

pkgs/build-support/php/builders/v2/build-composer-vendor.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let
3434
composerNoScripts = previousAttrs.composerNoScripts or true;
3535
composerStrictValidation = previousAttrs.composerStrictValidation or true;
3636

37-
name = "${previousAttrs.pname}-${previousAttrs.version}-composer-repository";
37+
name = "${previousAttrs.pname}-composer-repository-${previousAttrs.version}";
3838

3939
# See https://github.com/NixOS/nix/issues/6660
4040
dontPatchShebangs = previousAttrs.dontPatchShebangs or true;

0 commit comments

Comments
 (0)