about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-11-29T09·39+0300
committerclbot <clbot@tvl.fyi>2023-11-29T09·44+0000
commitf9eddf6f295612cda6a3002f43930862a829612f (patch)
tree6f87bd9acb0f1147eb7665be7ff36b5c292144fa /third_party
parentdfb48dcadebf027fd86e854f15630f14b87136c0 (diff)
fix(3p/nixpkgs): pin tpm2-pkcs11 to version from stable channel r/7088
This doesn't work correctly in unstable (there's a few suspicious
commits, but I haven't debugged it further yet). However, this tool is
critical for me, hence the rollback.

Change-Id: I1f1e18775324b4aa60a4f3c65abdd51dea596cad
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10167
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nixpkgs/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index 23252b60ab..8a0abfba58 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -55,6 +55,9 @@ let
 
     # awscli2 is broken on unstable; 2023-11-22
     awscli2 = stableNixpkgs.awscli2;
+
+    # TPM authentication seems broken on unstable; 2023-11-29
+    tpm2-pkcs11 = stableNixpkgs.tpm2-pkcs11;
   };
 
   # Overlay to expose the nixpkgs commits we are using to other Nix code.