diff options
-rw-r--r-- | default.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 4c54d1564636..38de1be0de84 100644 --- a/default.nix +++ b/default.nix @@ -70,4 +70,13 @@ in fix(self: { runCommand symlinkJoin writeText; -}) +} + +# 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. +// { + inherit (self.third_party) go ripgrep; +} +) |