doc/php: Fix mkComposerRepository example
`mkComposerRepository` required `pname` and `version` since the beginning (b36ad2f517
), with the boolean attribute becoming required later (3eb168da92
).
This commit is contained in:
parent
feb2849fde
commit
05f5dbd470
@ -283,7 +283,10 @@ in {
|
|||||||
];
|
];
|
||||||
|
|
||||||
composerRepository = php.mkComposerRepository {
|
composerRepository = php.mkComposerRepository {
|
||||||
inherit (finalAttrs) src;
|
inherit (finalAttrs) pname version src;
|
||||||
|
composerNoDev = true;
|
||||||
|
composerNoPlugins = true;
|
||||||
|
composerNoScripts = true;
|
||||||
# Specifying a custom composer.lock since it is not present in the sources.
|
# Specifying a custom composer.lock since it is not present in the sources.
|
||||||
composerLock = ./composer.lock;
|
composerLock = ./composer.lock;
|
||||||
# The composer vendor hash
|
# The composer vendor hash
|
||||||
|
Loading…
Reference in New Issue
Block a user