about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-10-09T21·01+0200
committerclbot <clbot@tvl.fyi>2023-10-09T22·01+0000
commit67ccbf8c946ee18d45ec0d8c43d69d6809a4d644 (patch)
tree2e0e4fa60b6897080c980709c25cd79c65cc7d84
parent87396d29fd70bcae9a929f9ccec0c8dd9be81ebb (diff)
fix(tvix/castore-protos-go): fix src r/6756
This was unfortunately using ./castore/protos all the time, so not
testing castore at all.

Update src to make sure it does get built.

Change-Id: I563910c259ffca6aee7f964532bd39c4bcf7aed8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9596
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Brian McGee <brian@bmcgee.ie>
Tested-by: BuildkiteCI
-rw-r--r--tvix/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/default.nix b/tvix/default.nix
index 826eb2af26..c35ba733a5 100644
--- a/tvix/default.nix
+++ b/tvix/default.nix
@@ -100,8 +100,8 @@ in
   # Builds and tests the code in castore/protos.
   castore-protos-go = pkgs.buildGoModule {
     name = "castore-golang";
-    src = depot.third_party.gitignoreSource ./store/protos;
-    vendorHash = "sha256-o7moXRxhKxCpsds96sSsHHafKJf2AWhFMu/YdSu+FM4=";
+    src = depot.third_party.gitignoreSource ./castore/protos;
+    vendorHash = "sha256-7xfXBBU3xJz7ifjk7Owm/byTfCQ8oaZtqXzBKhLqo00=";
   };
 
   # Builds and tests the code in store/protos.