diff options
Diffstat (limited to 'tvix/store/default.nix')
-rw-r--r-- | tvix/store/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tvix/store/default.nix b/tvix/store/default.nix index 68b529e723b1..65289cacc87c 100644 --- a/tvix/store/default.nix +++ b/tvix/store/default.nix @@ -11,7 +11,7 @@ let protobufDep = prev: (prev.nativeBuildInputs or [ ]) ++ [ pkgs.protobuf ]; in -depot.tvix.crates.workspaceMembers.tvix-store.build.override { +depot.tvix.crates.workspaceMembers.tvix-store-bin.build.override { # Ensure protobuf dependencies are available. # TODO: figure out a way to embed this directly in the //tvix # crate2nix config. @@ -28,6 +28,11 @@ depot.tvix.crates.workspaceMembers.tvix-store.build.override { PROTO_ROOT = protoRoot; nativeBuildInputs = protobufDep prev; }; + + tvix-store-bin = prev: { + PROTO_ROOT = protoRoot; + nativeBuildInputs = protobufDep prev; + }; }; runTests = true; |