diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-09T10·53+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-11T22·35+0000 |
commit | 8486f87e3c180732d04e58154762c016c054d776 (patch) | |
tree | d555a1cd622bb4e9836314dd2bcb777f9b20ef82 /tvix/glue/src/lib.rs | |
parent | 92bd69aef23126412a15649e441339c96e001212 (diff) |
feat(tvix/build): add derivation_to_build_request r/7154
This function converts from a nix_compat::derivation::Derivation to a BuildRequest. In addition to the Derivation itself, it needs two lookup functions to map input paths to their castore nodes. Change-Id: I0332982f0bc7933a5fda137fe39d5a850639d929 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10236 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Diffstat (limited to 'tvix/glue/src/lib.rs')
-rw-r--r-- | tvix/glue/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/glue/src/lib.rs b/tvix/glue/src/lib.rs index 6b3de0e23555..805f16d04b1e 100644 --- a/tvix/glue/src/lib.rs +++ b/tvix/glue/src/lib.rs @@ -1,6 +1,7 @@ pub mod builtins; pub mod known_paths; pub mod refscan; +pub mod tvix_build; pub mod tvix_io; pub mod tvix_store_io; |