about summary refs log tree commit diff
path: root/third_party/nixpkgs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-10-26T22·34+0300
committerclbot <clbot@tvl.fyi>2023-10-30T16·33+0000
commit67db631db8d649d2ab7e1fe531f00bb26e848363 (patch)
tree0239228c60ca497cee415f9572380ffa3f324d74 /third_party/nixpkgs
parent67fed3d76deae9eb62f0313812c56e93e595cb3a (diff)
chore(3p/sources): bump channels & overlays (2023-10-29) r/6916
* //3p/nixpkgs: use py3status from stable for //users/grfn

* //3p/nixpkgs: use electrum from stable for //users/tazjin

* //3p/overlays: update crate2nix vendor hash
  not sure why this hash is not stable if the package isn't updated,
  but whatever

Change-Id: Ia7a13ac35b9c5534eefa53eff66e47ea1c32c62a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9830
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
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.