From 67db631db8d649d2ab7e1fe531f00bb26e848363 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 27 Oct 2023 01:34:07 +0300 Subject: chore(3p/sources): bump channels & overlays (2023-10-29) * //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 Reviewed-by: flokli Tested-by: BuildkiteCI --- third_party/nixpkgs/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'third_party/nixpkgs') 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. -- cgit 1.4.1