fix(views/kit): Export niv-pinned source hashes

These are required for standalone imports of the kit now.

Change-Id: Ie3c7218a606b1ba9cf274bb80b314a7889d8ede9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5189
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: ezemtsov <eugene.zemtsov@gmail.com>
This commit is contained in:
Vincent Ambo 2022-02-02 15:20:54 +03:00 committed by tazjin
parent bb140e16a2
commit 49c8d8371c
2 changed files with 10 additions and 2 deletions

View file

@ -6,7 +6,12 @@
# it simple. Adding it may be useful if we set up test scaffolding
# around the exported workspace.
{ pkgs ? import ./nixpkgs { depotOverlays = false; }, ... }:
{ pkgs ? (import ./nixpkgs {
depotOverlays = false;
depot.third_party.sources = import ./sources { };
})
, ...
}:
pkgs.lib.fix (self: {
buildGo = import ./buildGo { inherit pkgs; };