diff options
author | Vincent Ambo <mail@tazj.in> | 2023-09-19T20·41+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-09-19T20·58+0000 |
commit | b87af6ccaa3b1f3e96ae75a7bc45e727bfd81af0 (patch) | |
tree | 638d4e1a331420ef01181adba2d9ecaef0583855 /third_party | |
parent | 1c3b6341cfee76f92469a63e748c8613824b77ef (diff) |
chore(3p/overlays): remove unnecessary nixpkgs workarounds r/6619
These things were fixed upstream. Change-Id: I027862aabd8239111c8e94aa5390af192386c4a1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9368 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/overlays/tvl.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 4cfdd846a6a0..69b119a48959 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -39,12 +39,7 @@ depot.nix.readTree.drvTargets { nix = self.nix_2_3; nix_latest = super.nix; - # nixos-option only builds against Nix 2.15 - nixos-option = super.nixos-option.override { - nix = self.nixVersions.nix_2_15; - }; - - # Too match telega in emacs-overlay or wherever + # To match telega in emacs-overlay or wherever tdlib = super.tdlib.overrideAttrs (_: { version = "1.8.16"; src = self.fetchFromGitHub { @@ -113,10 +108,6 @@ depot.nix.readTree.drvTargets { }; })); - # nixpkgs-review added ZSH completions upstream, which collide with - # nix-zsh-completions. - nixpkgs-review = self.lib.hiPrio super.nixpkgs-review; - # Pin a newer version of crate2nix from git, which is not officially # released but supports `dep:` crate2nix = super.crate2nix.overrideAttrs (old: rec { |