From 67ccbf8c946ee18d45ec0d8c43d69d6809a4d644 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 9 Oct 2023 23:01:40 +0200 Subject: fix(tvix/castore-protos-go): fix src 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 Reviewed-by: Brian McGee Tested-by: BuildkiteCI --- tvix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tvix/default.nix b/tvix/default.nix index 826eb2af26d7..c35ba733a517 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. -- cgit 1.4.1