Expose cache helpers in passthru for individual packaging#105
Open
the-sun-will-rise-tomorrow wants to merge 1 commit into
Open
Expose cache helpers in passthru for individual packaging#105the-sun-will-rise-tomorrow wants to merge 1 commit into
the-sun-will-rise-tomorrow wants to merge 1 commit into
Conversation
When `individualNixPackaging` is enabled, the generated Nix expression now adds `collectCacheScript` and `cacheDrvs` to the project derivation's passthru. Both values reuse the existing `mkCacheBuilderForDrvs` helper. Motivation: consumers sometimes want to materialize `node_modules` (or otherwise run `yarn install`) inside their own derivations while still relying on the cache derivations emitted by Nixify. Today they have to depend on the entire libexec workspace output, which can easily climb into the gigabytes for large repositories. Improve this by exposing the script that copies all per-package cache derivations, as well as the underlying `cacheDrvs` attribute set, so downstream derivations can source the script and populate `.yarn/cache` without copying the full workspace tree.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When
individualNixPackagingis enabled, the generated Nix expression now addscollectCacheScriptandcacheDrvsto the project derivation's passthru. Both values reuse the existingmkCacheBuilderForDrvshelper.Motivation: consumers sometimes want to materialize
node_modules(or otherwise runyarn install) inside their own derivations while still relying on the cache derivations emitted by Nixify. Today they have to depend on the entire libexec workspace output, which can easily climb into the gigabytes for large repositories.Improve this by exposing the script that copies all per-package cache derivations, as well as the underlying
cacheDrvsattribute set, so downstream derivations can source the script and populate.yarn/cachewithout copying the full workspace tree.