Skip to content

Commit 6b8d741

Browse files
committed
tools: add boringssl to tools/nix/openssl-matrix.nix
1 parent 5819856 commit 6b8d741

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

tools/dep_updaters/update-nixpkgs-pin.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ mv "$TMP_FILE" "$NIXPKGS_PIN_FILE"
2929
nix-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;

tools/nix/openssl-matrix.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
openssl_3_5
1212
openssl_3_6
1313
openssl_4_0
14+
boringssl
1415
;
1516
}

0 commit comments

Comments
 (0)