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;
@@ -54,7 +54,7 @@ nix-instantiate -I "nixpkgs=$NIXPKGS_PIN_FILE" --eval --strict --json -E "
5454
5555{
5656 inherit (pkgs)
57- \(.attrs | join("\n "))
57+ \(.attrs | sort | join("\n "))
5858 ;
5959}"' > " $OPENSSL_MATRIX_FILE "
6060
Original file line number Diff line number Diff line change 66
77{
88 inherit ( pkgs )
9+ boringssl
910 openssl_1_1
1011 openssl_3
1112 openssl_3_5
You can’t perform that action at this time.
0 commit comments