about summary refs log tree commit diff
path: root/third_party/nixpkgs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nixpkgs')
-rw-r--r--third_party/nixpkgs/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index 84bd500cbf..df0bccc39a 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -49,8 +49,14 @@ let
   # Overlay for packages that should come from the stable channel
   # instead (e.g. because something is broken in unstable).
   # Use `stableNixpkgs` from above.
-  stableOverlay = _unstableSelf: _unstableSuper: {
-    # nothing is currently broken on unstable. yay!
+  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;
   };
 
   # Overlay to expose the nixpkgs commits we are using to other Nix code.