mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-27 14:51:15 +03:00
12 lines
411 B
Markdown
12 lines
411 B
Markdown
|
## problems with original node2nix implementation
|
||
|
|
||
|
### Bad caching
|
||
|
- packages are all unpacked at once inside a build instead of in individual derivations
|
||
|
|
||
|
### Bad build performance
|
||
|
- unpacking is done sequentially
|
||
|
- pinpointing deps is done sequentially
|
||
|
|
||
|
### build time dependencies unavailable
|
||
|
- packages are not available during build (could be fixed by setting NODE_PATH and installing in correct order)
|