diff options
Diffstat (limited to 'tvix/shell.nix')
-rw-r--r-- | tvix/shell.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tvix/shell.nix b/tvix/shell.nix index 75e64b88b2f9..422f1c8dd40a 100644 --- a/tvix/shell.nix +++ b/tvix/shell.nix @@ -8,7 +8,16 @@ pkgs ? (import ./nixpkgs { depotOverlays = false; depot.third_party.sources = import ./sources { }; - additionalOverlays = [ ]; + additionalOverlays = [ + (self: super: { + # https://github.com/googleapis/google-cloud-go/pull/9665 + cbtemulator = super.cbtemulator.overrideAttrs (old: { + patches = old.patches or [ ] ++ [ + ./nixpkgs/cbtemulator-uds.patch + ]; + }); + }) + ]; }) , ... }: |