File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ mv "$TMP_FILE" "$NIXPKGS_PIN_FILE"
2929nix-instantiate -I " nixpkgs=$NIXPKGS_PIN_FILE " --eval --strict --json -E "
3030 let
3131 pkgs = import <nixpkgs> {};
32+ opensslAttrs = builtins.filter
33+ (n: builtins.match \" openssl_[0-9]+(_[0-9]+)?\" n != null)
34+ (builtins.attrNames pkgs);
35+ extraMatrixAttrs = [ \" boringssl\" ];
3236 attrs = builtins.filter
3337 (n:
3438 let t = builtins.tryEval pkgs.\$ {n}; in
3539 t.success && (builtins.tryEval t.value.version).success
3640 )
37- (
38- builtins.filter
39- (n: builtins.match \" openssl_[0-9]+(_[0-9]+)?\" n != null)
40- (builtins.attrNames pkgs)
41- );
41+ (opensslAttrs ++ extraMatrixAttrs);
4242 in
4343 {
4444 inherit attrs;
Original file line number Diff line number Diff line change 1111 openssl_3_5
1212 openssl_3_6
1313 openssl_4_0
14+ boringssl
1415 ;
1516}
You can’t perform that action at this time.
0 commit comments