49c8d8371c
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>
24 lines
711 B
Nix
24 lines
711 B
Nix
# Externally importable TVL depot stack. This is intended to be called
|
|
# with a supplied package set, otherwise the package set currently in
|
|
# use by the TVL depot will be used.
|
|
#
|
|
# For now, readTree is not used inside of this configuration to keep
|
|
# it simple. Adding it may be useful if we set up test scaffolding
|
|
# around the exported workspace.
|
|
|
|
{ pkgs ? (import ./nixpkgs {
|
|
depotOverlays = false;
|
|
depot.third_party.sources = import ./sources { };
|
|
})
|
|
, ...
|
|
}:
|
|
|
|
pkgs.lib.fix (self: {
|
|
buildGo = import ./buildGo { inherit pkgs; };
|
|
buildkite = import ./buildkite { inherit pkgs; };
|
|
readTree = import ./readTree { };
|
|
|
|
besadii = import ./besadii {
|
|
depot.nix.buildGo = self.buildGo;
|
|
};
|
|
})
|