diff options
author | Aspen Smith <root@gws.fyi> | 2024-01-30T18·03-0500 |
---|---|---|
committer | aspen <root@gws.fyi> | 2024-02-01T20·33+0000 |
commit | 25f092002554fa53497fc7d844ae257832ad655a (patch) | |
tree | 997e75950cb5e17cca1691fca12d5e40ee6d2f2c /third_party/nixpkgs | |
parent | d3d41552cf1f6485f8ebc597a2128a0d15b030a5 (diff) |
chore(3p/sources): Bump channels & overlays r/7462
* update for agenix has been dropped, for the same reason as with cl/10458 * dropped stable override for avrdude * dropped stable override for awscli2 * picked SBCL from stable channel due to weird build errors that only seem to happen on AMD CPUs (like on whitby) Change-Id: I54557ef09d14ccf243c286101e75e948e65e0217 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10712 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party/nixpkgs')
-rw-r--r-- | third_party/nixpkgs/default.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 8a0abfba58f2..08ec6f85244e 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -50,11 +50,8 @@ let # instead (e.g. because something is broken in unstable). # Use `stableNixpkgs` from above. stableOverlay = _unstableSelf: unstableSuper: { - # avrdude is broken on unstable; 2023-11-22 - avrdude = stableNixpkgs.avrdude; - - # awscli2 is broken on unstable; 2023-11-22 - awscli2 = stableNixpkgs.awscli2; + # weird memory access issues in SBCL on AMD; 2024-02-01 + sbcl = stableNixpkgs.sbcl; # TPM authentication seems broken on unstable; 2023-11-29 tpm2-pkcs11 = stableNixpkgs.tpm2-pkcs11; |