2022-01-18 16:33:05 +01:00
|
|
|
# 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.
|
|
|
|
|
2022-02-02 13:20:54 +01:00
|
|
|
{ pkgs ? (import ./nixpkgs {
|
|
|
|
depotOverlays = false;
|
|
|
|
depot.third_party.sources = import ./sources { };
|
|
|
|
})
|
|
|
|
, ...
|
|
|
|
}:
|
2022-01-18 16:33:05 +01:00
|
|
|
|
|
|
|
pkgs.lib.fix (self: {
|
|
|
|
buildGo = import ./buildGo { inherit pkgs; };
|
|
|
|
readTree = import ./readTree { };
|
|
|
|
|
2022-02-07 11:24:18 +01:00
|
|
|
buildkite = import ./buildkite {
|
|
|
|
inherit pkgs;
|
|
|
|
depot.nix.readTree = self.readTree;
|
|
|
|
};
|
|
|
|
|
2022-01-18 16:33:05 +01:00
|
|
|
besadii = import ./besadii {
|
|
|
|
depot.nix.buildGo = self.buildGo;
|
|
|
|
};
|
2022-02-11 11:10:23 +01:00
|
|
|
|
|
|
|
magrathea = import ./magrathea { inherit pkgs; };
|
2022-01-18 16:33:05 +01:00
|
|
|
})
|