about summary refs log tree commit diff
path: root/third_party/nixpkgs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-11-12T15·29+0300
committerclbot <clbot@tvl.fyi>2023-11-12T18·19+0000
commite36872e689972e8738aed18b9e6a403826334fcb (patch)
tree8c688d307fc4889e11590732f9291d089c7fb6ea /third_party/nixpkgs
parent0c9304d41e9fabb1a2401146237adf6ef4efb0ff (diff)
chore(3p/sources): bump nixpkgs & channels (2023-11-12) r/6998
* update wasm-bindgen in all Rust-wasm projects
* remove stable overlays that work again in unstable
* add texlive to stable overlays (see linked nixpkgs PR)
* bump tdlib to 1.8.18, new minimum for telega.el

Change-Id: Ib8e202de7dfbc35115fda31d0a98b6314b2adf17
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10010
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'third_party/nixpkgs')
-rw-r--r--third_party/nixpkgs/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index df0bccc39a..c513893d3f 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -50,13 +50,9 @@ let
   # instead (e.g. because something is broken in unstable).
   # Use `stableNixpkgs` from above.
   stableOverlay = _unstableSelf: unstableSuper: {
-    # py3status is broken on nixpkgs-unstable (2023-10-29)
-    python3Packages = unstableSuper.python3Packages // {
-      py3status = stableNixpkgs.python3Packages.py3status;
-    };
-
-    # electrum is broken on unstable (2023-10-29)
-    electrum = stableNixpkgs.electrum;
+    # build-tex-env is broken on unstable; 2023-11-12
+    # https://github.com/NixOS/nixpkgs/pull/267083
+    texlive = stableNixpkgs.texlive;
   };
 
   # Overlay to expose the nixpkgs commits we are using to other Nix code.