mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #296857 from doronbehar/docs/mkYarnPackage.doDist
doc/mkYarnPackage: document better distPhase and doDist
This commit is contained in:
commit
a29a5a60bc
1 changed files with 2 additions and 2 deletions
|
@ -315,10 +315,10 @@ buildPhase = ''
|
|||
'';
|
||||
```
|
||||
|
||||
The dist phase is also trying to build a binary, the only way to override it is with:
|
||||
The `distPhase` is packing the package's dependencies in a tarball using `yarn pack`. You can disable it using:
|
||||
|
||||
```nix
|
||||
distPhase = "true";
|
||||
doDist = false;
|
||||
```
|
||||
|
||||
The configure phase can sometimes fail because it makes many assumptions which may not always apply. One common override is:
|
||||
|
|
Loading…
Reference in a new issue