diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-09T21·01+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-10-09T22·01+0000 |
commit | 67ccbf8c946ee18d45ec0d8c43d69d6809a4d644 (patch) | |
tree | 2e0e4fa60b6897080c980709c25cd79c65cc7d84 /tvix/default.nix | |
parent | 87396d29fd70bcae9a929f9ccec0c8dd9be81ebb (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
Diffstat (limited to 'tvix/default.nix')
-rw-r--r-- | tvix/default.nix | 4 |
1 files 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. |