diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-09T03·19+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-09T03·19+0000 |
commit | 998a2ceb17f6b2d29c1c3e02cd536e2af4ceee9c (patch) | |
tree | c213e2a83c2603cc561aaabc419232d99bb1f9b8 /third_party/default.nix | |
parent | 97be9c1411aca437daa9eb95474ee134e727a3d9 (diff) |
fix(third_party): Expose missing dependencies for Nixery r/107
Diffstat (limited to 'third_party/default.nix')
-rw-r--r-- | third_party/default.nix | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index 2ba106795846..ad77ed98c0e7 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -21,27 +21,43 @@ let # Inherit the packages from nixpkgs that should be available inside # of the repo. They become available under `pkgs.third_party.<name>` inherit (nixpkgs) + bashInteractive buildGoPackage + cacert + cachix cargo + coreutils darwin + dockerTools emacs26-nox emacsPackagesFor fetchFromGitHub + git + gnutar + go google-cloud-sdk + gzip haskell + iana-etc jq lib llvmPackages + mdbook + nix + openssh remarshal rsync runCommand + rustPlatform rustc stdenv symlinkJoin + terraform_0_12 tree writeShellScriptBin writeText - writeTextFile; + writeTextFile + zlib; }; in exposed // { |