2019-12-20 21:37:02 +01:00
|
|
|
# This file is used to move things from nested attribute sets to the
|
|
|
|
# top-level.
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2019-12-20 21:37:02 +01:00
|
|
|
|
|
|
|
{
|
2020-02-21 13:47:29 +01:00
|
|
|
buildGo = depot.nix.buildGo; # TODO(tazjin): remove this
|
2019-12-20 21:37:02 +01:00
|
|
|
|
|
|
|
# These packages must be exposed for compatibility with buildGo.
|
|
|
|
#
|
|
|
|
# Despite buildGo being tracked in this tree, I want it to be possible
|
|
|
|
# for external users to import it with the default nixpkgs layout.
|
2020-02-21 13:47:29 +01:00
|
|
|
inherit (depot.third_party) go ripgrep;
|
2019-12-20 21:37:02 +01:00
|
|
|
}
|