about summary refs log tree commit diff
path: root/third_party/nixpkgs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nixpkgs/default.nix')
-rw-r--r--third_party/nixpkgs/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index c513893d3f..23252b60ab 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -50,9 +50,11 @@ let
   # instead (e.g. because something is broken in unstable).
   # Use `stableNixpkgs` from above.
   stableOverlay = _unstableSelf: unstableSuper: {
-    # build-tex-env is broken on unstable; 2023-11-12
-    # https://github.com/NixOS/nixpkgs/pull/267083
-    texlive = stableNixpkgs.texlive;
+    # avrdude is broken on unstable; 2023-11-22
+    avrdude = stableNixpkgs.avrdude;
+
+    # awscli2 is broken on unstable; 2023-11-22
+    awscli2 = stableNixpkgs.awscli2;
   };
 
   # Overlay to expose the nixpkgs commits we are using to other Nix code.